This repository has been archived on 2026-03-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bucky-old/src/main.rs
2026-01-15 21:52:26 +01:00

12 lines
181 B
Rust

use crate::parser::Parser;
pub mod ast;
pub mod parser;
pub mod token;
fn main() {
let mut parser = Parser::new("break;");
println!("{:#?}", parser.parse_statement());
}