remove commented code

This commit is contained in:
Rowan 2025-01-05 11:30:55 -06:00
parent 6db6fab939
commit 9d83ad1ccf

View file

@ -334,8 +334,6 @@ fn main() {
Ok(mut machine) => machine.execute().expect("<halt>"),
Err(e) => println!("{e}"),
};
//let mut machine = Program::from_program(Tape::new(program)).expect("failed to load program");
//machine.execute().expect("<halt>");
}
#[cfg(test)]