From a4875ff876854d694a935b94d3c4038468dcb38c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= Date: Mon, 2 Jan 2023 16:04:44 +0100 Subject: [PATCH] Interpreter - Actually use the callable module --- src/interpreter/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/interpreter/mod.rs b/src/interpreter/mod.rs index 9d88dfd..d6b5c89 100644 --- a/src/interpreter/mod.rs +++ b/src/interpreter/mod.rs @@ -1,7 +1,9 @@ +mod callable; mod environment; mod interpretable; mod value; +pub use callable::Callable; pub use environment::*; pub use interpretable::*; pub use value::*;