not sure?

This commit is contained in:
TerraMaster85 2024-01-18 17:50:53 -05:00
parent ad974a40e5
commit 8d53533235
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ pub fn lexer(text_source: &str) -> Result<Vec<Token>, KError> {
let num = match current_token.parse::<f64>() {
Ok(n) => n,
Err(_) => {
println!("{} {}", span_start, pos);
debug!("{} {}", span_start, pos);
return Err(KError::UserError(vec![
Diagnostic {
message: "invalid numeric literal".to_string(),