tr-lang 0.4.0

A programming language made to bring syntax closer to Turkish
Documentation
#![feature(io_error_more)]

//! tr-lang programming language is a language that aims to make programming simpler for
//! turkish speaking groups

pub mod lexer;
pub use lexer::Lexer;

pub mod parser;
pub use parser::Parser;

pub mod bytecode;
pub mod errwarn;
pub mod mem;
pub(crate) mod store;
pub mod token;
pub(crate) mod util;

pub mod runtime;
pub use runtime::Run;
#[cfg(feature = "interactive")]
pub mod interactive;