A brainfuck interpreter written in slope
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
sloum a1f5efaf9e Merge branch 'master' of https://git.rawtext.club/sloum/brainfuck 2 years ago
README.md Initial commit 2 years ago
brainfuck Merge branch 'master' of https://git.rawtext.club/sloum/brainfuck 2 years ago
hello_world.bf Initial commit 2 years ago
slope.bf Incorporates samhunters changes to the ascii table and adds another example file 2 years ago

README.md

brainfuck

This is a brainfuck interpreter written in slope. It was mostly written for the fun of having written an interpreter in a language that I also wrote the interpreter for. Now I just need to complete the circle and write a slope interpreter in brainfuck (fat chance, I do not posess that skill or patience level).

For information on how to write brainfuck programs see the brainfuck wikipedia entry.

This interpreter supports all features of the language as described in the above mentioned wikipedia entry.

Have fun! An example hello world brainfuck program has been included for your convenience in trying out the interpreter.

Running

brainfuck [path to brainfuck file]

The above assumes that slope is on your path. If it is not, something like the following should work (assuming both the slope executable and the brainfuck program file are in the current directory):

./slope ./brainfuck [path to brainfuck file]