BrainFuck interpreter for Cuis Smalltalk .
Ported from: http://www.squeaksource.com/BrainFuck.html, author: Bernat Romagosa.
After cloning this repo, open a workspace in Cuis and type:
Feature require: #'BrainFuck'.
(BFInterpreter program: myBrainFuckProgramInAString) executeProgram.
The output is sent to the Transcript.
| p |
p := BFInterpreter programFile: '/path/to/file'.
p executeProgram.