remove debug prints
This commit is contained in:
parent
647db3a301
commit
06a51a258b
2 changed files with 1 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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]);
|
||||
|
|
Loading…
Add table
Reference in a new issue