2021-08-10 14:32:12 -05:00
|
|
|
#![forbid(unsafe_code, clippy::unwrap_used)]
|
|
|
|
|
|
|
|
pub mod ast;
|
2021-10-09 23:31:14 -05:00
|
|
|
pub mod error;
|
2021-08-10 14:32:12 -05:00
|
|
|
pub mod interpret;
|
|
|
|
pub mod parser;
|
|
|
|
|
|
|
|
mod base_55;
|
|
|
|
mod brian;
|
|
|
|
mod consts;
|
|
|
|
mod lexer;
|
|
|
|
mod variables;
|