1
0
Fork 0
monkey-interpreter/src/main.rs

10 lines
105 B
Rust
Raw Normal View History

2019-01-13 19:09:27 +00:00
#[macro_use]
extern crate lazy_static;
mod lexer;
mod parser;
2019-02-05 08:57:20 +00:00
mod repl;
2019-01-13 19:09:27 +00:00
2019-02-05 08:57:20 +00:00
fn main() {
repl::init();
2019-08-30 19:58:20 +00:00
}