nixpulvis / brainfuck

A simple brainfuck interpreter in Rust.
http://nixpulvis.com/brainfuck
23 stars 3 forks source link

Arbitrary Readers and Writers #3

Closed nixpulvis closed 8 years ago

nixpulvis commented 8 years ago

Currently the Interpreter only uses STDIN and STDOUT for the . and , instructions, however in the sake of flexibility it's better to allow other options as well. Now the interpreter can use anything that implements Read for , and anything that implements Write for .

nixpulvis commented 8 years ago

Merging as it's needed for testing other things now.