hex, base64, Math.urandom, IO.read_line

This commit is contained in:
2025-06-16 17:22:20 +02:00
parent 7425ab256b
commit 2b6f39135a
4 changed files with 130 additions and 7 deletions

View File

@@ -231,7 +231,7 @@ impl Tokenizer {
self.handle_indentation()?;
}
'0'..='9' => self.scan_number(),
'A'..='Z' | 'a'..='z' | '_' | '.' => self.scan_identifier(),
'A'..='Z' | 'a'..='z' | '_' => self.scan_identifier(),
_ => return error!(self.loc, "unexpected character"),
}
Ok(())