forked from AbleScript/ablescript
Alex Bethel
6eb97c6032
Typing ``` var foo = [ ``` into the REPL now causes it to prompt you to complete the statement rather than just printing an "unexpected EOF" error.
13 lines
172 B
Rust
13 lines
172 B
Rust
#![forbid(unsafe_code, clippy::unwrap_used)]
|
|
|
|
pub mod ast;
|
|
pub mod error;
|
|
pub mod interpret;
|
|
pub mod parser;
|
|
|
|
mod base_55;
|
|
mod brian;
|
|
mod consts;
|
|
mod lexer;
|
|
mod variables;
|