add ast to main crate

This commit is contained in:
Josh Thomas 2024-12-10 11:28:29 -06:00
parent 2f9fdd6ceb
commit 7279746f18
2 changed files with 4 additions and 0 deletions

View file

@ -2,3 +2,6 @@ mod ast;
mod lexer;
mod parser;
mod tokens;
pub use ast::Ast;
pub use parser::Parser;