There was an error while loading. Please reload this page.
1 parent 64a1897 commit cb8ec3cCopy full SHA for cb8ec3c
1 file changed
src/interpreter.rs
@@ -654,7 +654,6 @@ fn execute_block<'a>(
654
Operand::Value(value) => value.unwrap(),
655
Operand::Function => continue 'a,
656
};
657
- println!("{:?}", a);
658
659
let mut found = false;
660
'b: for (pattern, has_guard, skip) in patterns {
@@ -663,7 +662,6 @@ fn execute_block<'a>(
663
662
664
665
666
- println!("{:?}", condition);
667
match condition {
668
Value::Boolean(b) => b,
669
_ => return Err(Error::InvalidCondition),
0 commit comments