normal tokens

This commit is contained in:
nora 2022-06-21 14:08:00 +02:00
parent abef21fa0a
commit aa8f6a91b2
3 changed files with 120 additions and 8 deletions

View file

@ -4,7 +4,7 @@ fn main() -> Result<(), Box<dyn Error>> {
let input_file = std::env::args().nth(1).expect("first argument");
let src = std::fs::read_to_string(input_file)?;
parser::parse_file(src);
parser::parse_file(&src);
Ok(())
}