Custom made bf interpreter + some extra features. Read the docs for help.
Basic documentation for bfPlus
BfPlus uses 10 keywords instead of 8 like normal brainfuck. Lets have a look at them.
List of new keywords:
* = multi-move -> moves pointer according to given number
@ = setter -> sets current memory block to given number
There are three options to run your bf+ script:
- Use the function bf(code) inside main script or import it to antoher project
- Inside terminal run `python bfp_compiler.py "<your_code>"