remove debug prints

This commit is contained in:
Daniella / Tove 2024-08-30 14:30:23 +02:00
parent 647db3a301
commit 06a51a258b
2 changed files with 1 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "spl"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
description = "Stack Pogramming Language: A simple, concise scripting language."
license = "MIT"

View file

@ -179,7 +179,6 @@ fn read_block(str_words: &[String], isfn: bool) -> Result<(Option<u32>, Words, u
types.push(str_words[i].to_owned());
i += 1;
}
println!("{} {}", str_words[i], str_words[i+1]);
let blk = read_block(&str_words[i + 1..], false)?;
i += 2 + blk.2;
println!("{} {}", str_words[i], str_words[i+1]);