please @camilstaps
[bf.git] / README.md
1 # bf, a brainfuck interpreter
2 ### Description
3 This is my implementation of a [brainfuck][bf] interpreter. It uses a
4 potentially infinite stack by reallocating more when necessary. `bf` is an
5 implementation with arrays, `bfll` is an implementation where the tape is a
6 doubly linked list.
7
8 ### Installation
9 Compiling is as easy as running `make`
10
11 Cleaning up the mess can be done by running `make clean`
12
13 ### Usage
14 Say you have a file containing a program on disk called `hello.bf`. Then you
15 can run the file by running `./bf hello.bf` or `./bfll hello.bf`.
16
17 ### License
18 Do what ever you want with this code.
19
20 [bf]: https://en.wikipedia.org/wiki/Brainfuck