An open API service indexing awesome lists of open source software.

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

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…