nixpulvis / brainfuck

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

Abstract the Notion of a Tape #15

Closed nixpulvis closed 8 years ago

nixpulvis commented 8 years ago

Right now we have a static vector and a pointer in the interpreter, I'd like to have a Tape instead with the needed functions.