Split off bytecode compilation into a separate crate

This commit is contained in:
coolreader18 2019-06-12 21:43:43 -05:00
commit 064919348d
6 changed files with 2995 additions and 0 deletions

7
src/lib.rs Normal file
View file

@ -0,0 +1,7 @@
#[macro_use]
extern crate log;
pub mod bytecode;
pub mod compile;
pub mod error;
mod symboltable;