Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 549 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 549 Bytes

Brainfuck Interpreter

A simple Brainfuck interpreter written in C. It can also transpile a Brainfuck program to C. The transpiler doesn't check for errors at the moment.

Screenshot

Build:

make

Usage:

bf [OPTION] [FILE]

Examples:

Interpret:

bf test.bf

Transpile to C:

bf --transpile test.bf

This interpreter takes about 45 seconds to run Erik Dubbelboer's Mandelbrot program.