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-16 21:21:38 +01:00

12 lines
212 B
Rust

use crate::parser::Parser;
pub mod ast;
pub mod parser;
pub mod token;
fn main() {
let mut parser = Parser::new(include_str!("../example/simple.bky"));
println!("{:#?}", parser.parse_declaration());
}