https://github.com/shinbatsu/brainfuck
List of Simple BrainFuck (.bf) code examples written by me
https://github.com/shinbatsu/brainfuck
ascii brainfuck bynary code-golf programming-language
Last synced: 13 days ago
JSON representation
List of Simple BrainFuck (.bf) code examples written by me
- Host: GitHub
- URL: https://github.com/shinbatsu/brainfuck
- Owner: Shinbatsu
- License: mit
- Created: 2021-11-16T02:50:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-30T19:53:25.000Z (3 months ago)
- Last Synced: 2025-07-30T22:20:59.544Z (3 months ago)
- Topics: ascii, brainfuck, bynary, code-golf, programming-language
- Language: Brainfuck
- Homepage:
- Size: 17.6 KB
- Stars: 23
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Brainfuck
### Description:
>This Repo contain .bf programs, which i wrote for fun, soo... If you have a little free time you can find here simple programs!
### Some Prehistory
> 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!### Main Opetaros:
```bf
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
```