bf - a minimal brainfuck interpreter
Features :
- Unbound data tape, can be as big as your RAM will let it
- Unbound program size, can be as big as your disk will let it
- Extremely minimal
- Supports comments
Installation
- Execute
./configurein the main directory. - Execute
sudo make installin the main directory.
After these commands have been run, the program should reside as "bf" in the /usr/bin directory (no other files are installed.)
The program is now installed and you can proceed to Basic Usage.
Basic usage
- To execute a program, run
bf my_bf_program.bffrom the terminal. - Use the
#character to mark the rest of a line as a comment.