diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,6 +1,13 @@ | |||
1 | brainfuck | 1 | brainfuck |
2 | ========= | 2 | ========= |
3 | 3 | ||
4 | ##Usage: | ||
5 | ```bash | ||
6 | gcc brainfuck.c -o brainfuck | ||
7 | ./brainfuck HelloWorld.bf | ||
8 | ``` | ||
9 | |||
10 | ##What's brainfuck | ||
4 | Brainfuck is represented by an array with 30,000 cells initialized to zero | 11 | Brainfuck is represented by an array with 30,000 cells initialized to zero |
5 | and a data pointer pointing at the current cell. | 12 | and a data pointer pointing at the current cell. |
6 | 13 | ||