https://github.com/lnsp/bf
A small, slow Brainfuck interpreter.
https://github.com/lnsp/bf
Last synced: about 1 year ago
JSON representation
A small, slow Brainfuck interpreter.
- Host: GitHub
- URL: https://github.com/lnsp/bf
- Owner: lnsp
- Created: 2016-03-22T00:48:56.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-22T00:49:01.000Z (about 10 years ago)
- Last Synced: 2025-02-11T16:43:09.048Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bf
This is another attempt to get into programming with C. This interpreter
really needs optimization in terms of loop / bracket matching, but I have not found a useful solution for this problem yet.
## Building
```bash
$ sudo apt-get install make gcc -y
$ git clone https://github.com/mooxmirror/bf
$ cd bf
$ ./bf examples/echo.bf
Hello World!
```