added interpreter mod
This commit is contained in:
parent
5c9b52ca7e
commit
f5013943fe
2
src/interpreter/mod.rs
Normal file
2
src/interpreter/mod.rs
Normal file
|
@ -0,0 +1,2 @@
|
|||
//! A simple tree-walk interpreter intended for testing purposes.
|
||||
//! To be replaced by VM soon :ferrisClueless:
|
|
@ -1,3 +1,4 @@
|
|||
pub mod error;
|
||||
pub mod interpreter;
|
||||
pub mod repl;
|
||||
pub mod syntax;
|
||||
|
|
Loading…
Reference in a new issue