Whenever the input command is found (,), it doesn't do anything. For example: ,. does not ask for input and outputs a \0. In the source code (vm.rs:51):
Instruction::CINPUT => {
},
Input needs to be implemented to create a full brainfuck interpreter.
Whenever the input command is found (
,), it doesn't do anything. For example:,.does not ask for input and outputs a\0. In the source code (vm.rs:51):Input needs to be implemented to create a full brainfuck interpreter.