cbf is a brainfuck interpreter written in C99. That's it really.
Upon startup, the program reads brainfuck code from standard input. Then it executes it and reads additional data from stdin and outputs to stdout.
Also after successfull shutdown it writes one additional \n
to stdout.
It's simple, really.
- get GCC,
- get CMake,
- get GNU Make.
Create a directory build
in repository's root directory,
and execute cmake ..
from it. Now run make all
. cbf
executable should appear in build
directory.
This program and its source code is unlicensed.