Interpreter - Created environment module

This commit is contained in:
Emmanuel BENOîT 2022-12-31 15:50:23 +01:00
parent bf6e150085
commit 7f94906412
2 changed files with 2 additions and 0 deletions

View file

View file

@ -1,5 +1,7 @@
mod environment;
mod interpretable; mod interpretable;
mod value; mod value;
pub use environment::*;
pub use interpretable::*; pub use interpretable::*;
pub use value::*; pub use value::*;