clean(parser::tokenizer): remove useless println

This commit is contained in:
gbrochar 2023-08-02 07:48:06 +02:00
parent 17dbc79624
commit 484e82c847
1 changed files with 0 additions and 1 deletions

View File

@ -1,7 +1,6 @@
use super::Token;
fn check_number(my_string: String, i: usize) -> Result<Token, String> {
println!("Checking number at index {i}");
if my_string.as_str() == "." {
return Err(format!("unexpected token: `.` at position {i}"));
}