Brainfuck Interpreter

View on GitHub

Brainfuck Interpreter

A simple interpreter for the Brainfuck esoteric programming language, written in C.

Building

make

This produces the bf executable.

Usage

Run a Brainfuck program from a file:

./bf example/Sierpinski.bf

Or run code directly from the command line with -c:

./bf -c "++++++++++[>+++++++>++++++++>+++<<<-]>+."