added interpreter mod

This commit is contained in:
Erin 2022-08-05 21:20:37 +02:00 committed by ondra05
parent 5c9b52ca7e
commit f5013943fe
2 changed files with 3 additions and 0 deletions

2
src/interpreter/mod.rs Normal file
View file

@ -0,0 +1,2 @@
//! A simple tree-walk interpreter intended for testing purposes.
//! To be replaced by VM soon :ferrisClueless:

View file

@ -1,3 +1,4 @@
pub mod error;
pub mod interpreter;
pub mod repl;
pub mod syntax;