Pull some of the REPL implementation out into the library, rather than the binary.

This commit is contained in:
2023-04-16 21:02:21 -07:00
parent c660d29d3a
commit e648f3b31b
3 changed files with 134 additions and 121 deletions

View File

@@ -2,6 +2,8 @@ pub mod backend;
mod compiler;
pub mod eval;
pub mod ir;
mod repl;
pub mod syntax;
pub use crate::compiler::Compiler;
pub use crate::repl::REPL;