diff --git a/src/parser.rs b/src/parser.rs index eeeb1a8..611067b 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -249,8 +249,6 @@ impl ParseTree { .locals(locals.to_mut().to_owned()) .collect::>()?; - trees.iter().for_each(|t| println!("{t:?}")); - let tree = trees.into_iter().fold( ParseTree::Constant(Value::Array(vec![])), |acc, x| ParseTree::Add(Box::new(acc), Box::new(x.clone())),