fix u8 error

This commit is contained in:
YannAhlgrim
2026-05-12 16:43:24 +02:00
parent a1fc32d7a3
commit 5fc4d355a8
3 changed files with 16 additions and 10 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ fn main() {
let mut l = new(input.to_string());
for (i, tok) in (0..36).map(|_| l.next_token()).enumerate() {
for (_i, tok) in (0..37).map(|_| l.next_token()).enumerate() {
println!("{}: {:?}", tok.type_, tok.literal);
}
}