bff/README.md

19 lines
439 B
Markdown
Raw Permalink Normal View History

2023-10-26 14:15:26 +02:00
# BFF
BFF (BrainFuck Fucker) is a really simple [Brainfuck](https://en.wikipedia.org/wiki/Brainfuck#Language_design) interpreter in c
## Usage
```
$ make
$ ./bff <program.bf>
```
## TODO
- [ ] Faster loops by keeping the position of the previous '[' or ']'
## Resources
- The wikipedia's BrainFuck Design Language: [https://en.wikipedia.org/wiki/Brainfuck#Language_design](https://en.wikipedia.org/wiki/Brainfuck#Language_design)