/iBrainfuck

Brainfuck interpreter implementation in Python

Primary LanguagePythonApache License 2.0Apache-2.0

iBrainfuck

iBrainfuck is a interpreter for the brainfuck lanugage written in Python3. Nested loops are supported.

Usage

To interprete a brainfuck source file, run the following command in your terminal:

~$ ./main.py [source.bf]

You will need to make the script executable by issuing the following command:

~$ chmod +x main.py