This repository contains Brainfuck programs and examples.
Brainfuck is an esoteric programming language with only 8 commands, designed to challenge and entertain programmers.
You can run Brainfuck programs locally using an interpreter.
sudo apt update
sudo apt install bfsudo snap install rust-bf
echo 'export PATH=$PATH:/snap/bin' >> ~/.bashrc
source ~/.bashrcbf hello.bf
rust-bf -f hello.bf
cat hello.bf | rust-bf- Sample Brainfuck programs (
.bffiles) - Example:
hello.bfprints "Hello World!"
Brainfuck uses the following 8 commands: +, -, >, <, [, ], ., ,
For more about the language: Wikipedia - Brainfuck
- Add example outputs for your sample programs.
- Include a LICENSE file if you want to specify usage permissions.
- Add contribution guidelines if you want others to contribute.