forked from AbleScript/ablescript
Erin
aa854a067b
* Separation to two crates - `ablescript`: library, language - `ablescript_cli` - cli: repl and executor for files * Added lints (back) to library - unsafe_code and unwrap_used are forbidden
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;
|