Interpreter - Actually use the callable module

This commit is contained in:
Emmanuel BENOîT 2023-01-02 16:04:44 +01:00
parent 3b5778ff47
commit a4875ff876

View file

@ -1,7 +1,9 @@
mod callable;
mod environment; mod environment;
mod interpretable; mod interpretable;
mod value; mod value;
pub use callable::Callable;
pub use environment::*; pub use environment::*;
pub use interpretable::*; pub use interpretable::*;
pub use value::*; pub use value::*;