https://github.com/jarhill0/bf-c
A BF interpreter in C
https://github.com/jarhill0/bf-c
bf
Last synced: 17 days ago
JSON representation
A BF interpreter in C
- Host: GitHub
- URL: https://github.com/jarhill0/bf-c
- Owner: jarhill0
- Created: 2019-05-05T19:12:32.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-05T01:48:05.000Z (over 6 years ago)
- Last Synced: 2025-03-03T07:41:43.634Z (over 1 year ago)
- Topics: bf
- Language: C
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A simple BF interpreter in C
This is an interpreter of the esoteric programming language
[BF](https://en.wikipedia.org/wiki/Brainfuck) written in C.
It's quite easy to write an interpreter for BF, since the language is so simple.
It's much harder to write programs…