forked from AbleScript/ablescript
13 lines
168 B
Rust
13 lines
168 B
Rust
|
#![forbid(unsafe_code, clippy::unwrap_used)]
|
||
|
|
||
|
pub mod ast;
|
||
|
pub mod interpret;
|
||
|
pub mod parser;
|
||
|
|
||
|
mod base_55;
|
||
|
mod brian;
|
||
|
mod consts;
|
||
|
mod error;
|
||
|
mod lexer;
|
||
|
mod variables;
|