An open API service indexing awesome lists of open source software.

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

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
```