Remove latent debug println for BFF input

This commit is contained in:
Alex Bethel 2021-07-22 22:11:55 -05:00
parent 4fd61b71dd
commit 594968f781

View file

@ -239,10 +239,7 @@ impl ExecEnv {
instructions: code.to_owned(), instructions: code.to_owned(),
tape_len: tape_len tape_len: tape_len
.as_ref() .as_ref()
.map(|tape_len| { .map(|tape_len| self.eval_expr(tape_len).map(|v| v.into_i32() as usize))
self.eval_expr(tape_len)
.map(|v| v.into_i32() as usize)
})
.unwrap_or(Ok(crate::brian::DEFAULT_TAPE_SIZE_LIMIT))?, .unwrap_or(Ok(crate::brian::DEFAULT_TAPE_SIZE_LIMIT))?,
}), }),
); );
@ -335,7 +332,7 @@ impl ExecEnv {
for arg in args { for arg in args {
arg.borrow().bf_write(&mut input); arg.borrow().bf_write(&mut input);
} }
println!("input = {:?}", input);
let mut output = vec![]; let mut output = vec![];
crate::brian::Interpreter::from_ascii_with_tape_limit( crate::brian::Interpreter::from_ascii_with_tape_limit(