parser works

This commit is contained in:
nora 2022-04-12 19:32:48 +02:00
parent 2b1daa55fb
commit 2484fe1f44
7 changed files with 402 additions and 0 deletions

8
rust2/src/main.rs Normal file
View file

@ -0,0 +1,8 @@
#![feature(allocator_api)]
#![warn(rust_2018_idioms)]
mod parse;
fn main() {
println!("Hello, world!");
}