Shift most of the meat of the compiler over into the library.

This commit is contained in:
2023-04-16 20:38:27 -07:00
parent 84321cb2de
commit c660d29d3a
3 changed files with 147 additions and 80 deletions

View File

@@ -1,4 +1,7 @@
pub mod backend;
mod compiler;
pub mod eval;
pub mod ir;
pub mod syntax;
pub use crate::compiler::Compiler;