GF.py
STILL WIP
Gamefuck.py is a programming language based off brainfuck. It is oriented towards game development, and as such has many commands specifically for game/UI development. It is implemented in python, using pygame as it's rendering system, ensuring stability(assuming it's used properly). It also adds several quality of life commands on top of standard brainfuck, namely :
and ;
, which copy the current cell, and ~
, which clears the current cell. This results in a language that is slightly more abstracted than brainfuck, but has the benefit of less code, and more use-cases. Note that it is still under development, and may never be properly finished. If you so desire, feel free to contribute, the help would be appreciated.
It is in a state where you can create animations(albeit with great effort, and only with rectangles), and small non-input based content(not implemented yet)