Skip to content

Commit cb8ec3c

Browse files
committed
Remove accidental printlns
1 parent 64a1897 commit cb8ec3c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/interpreter.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,6 @@ fn execute_block<'a>(
654654
Operand::Value(value) => value.unwrap(),
655655
Operand::Function => continue 'a,
656656
};
657-
println!("{:?}", a);
658657

659658
let mut found = false;
660659
'b: for (pattern, has_guard, skip) in patterns {
@@ -663,7 +662,6 @@ fn execute_block<'a>(
663662
Operand::Value(value) => value.unwrap(),
664663
Operand::Function => continue 'a,
665664
};
666-
println!("{:?}", condition);
667665
match condition {
668666
Value::Boolean(b) => b,
669667
_ => return Err(Error::InvalidCondition),

0 commit comments

Comments
 (0)