A language based on brainfuck. My experiment on making a usable programming language out of this esolang.
The compiler supports all the functionality of brainfuck, compiling into static x86_64 ELF executables. Please note that the program is currently dependent on nasm, but it is planned to be discarded in the future;
# cc main.c -o brainfucked
# ./brainfucked file.bf
or
# ./test.sh file.bf
- Full brainfuck functionality
- Optimizations
- Writing executables directly (without an assembler)
- New instructions and control flow
- Self hosting
- More platform support