This Repo contain .bf programs, which i wrote for fun, soo... If you have a little free time you can find here simple programs!
Brainfuck is one of the most well-known esoteric programming languages. But it can be hard to understand any code longer that 5 characters. he have only 8 commands, and at the same time has a full turing form.That is Amazing!
1 + Increment ASCII in cell
2 - Decrement ASCII in cell
3 . Write ASCII from current cell
4 , Read ASCII from current cell
5 > Move to next cell
6 < Move to privious cell
7 [ Star loop while ASCII in Cell !=0
8 ] End loop, Break if ASCII in current Cell==0