clean(parser::tokenizer): remove useless println
This commit is contained in:
		
							parent
							
								
									17dbc79624
								
							
						
					
					
						commit
						484e82c847
					
				| 
						 | 
				
			
			@ -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}"));
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue