Convert to internal tokens

This commit is contained in:
Elnu 2023-05-20 17:37:53 -07:00
parent 5442a8fc87
commit d957816ded
2 changed files with 46 additions and 29 deletions

View file

@ -1,5 +1,8 @@
use renrs;
fn main() {
renrs::parse("demo.rpy");
let tokens = renrs::parse_file("demo.rpy");
for token in tokens {
println!("{:?}", token);
}
}