/brainfuckInterpreter

A interpreter for the Brainfuck language. Implementet using only a single C++ file.

Primary LanguageC++GNU General Public License v2.0GPL-2.0

brainfuckInterpreter

An interpreter for the Brainfuck language, implemented using only a single C++ file.

What is Brainfuck?

Brainfuck is an esoteric programming language where the only symbols used are "<", ">", "+", "-", "." and "!". Read more: https://en.wikipedia.org/wiki/Brainfuck

Notes

  • Added the ":" symbol for printing cell values as numbers instead of ASCII characters. (Not part of the official language specification.