feat(lexer): Finish lexer parse and add tests

This commit is contained in:
2026-05-06 14:30:32 +08:00
commit e8b50ae0d7
10 changed files with 696 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
mod frontend;
mod ast;
mod utils;
fn main() {
println!("Hello, world!");
}