aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorIgor <pashev.igor@gmail.com>2010-01-18 08:24:09 +0300
committerIgor <pashev.igor@gmail.com>2010-01-18 08:24:09 +0300
commitc98e6c8e3159799254aa6f5aed904a7ec8e7c68d (patch)
tree1fa4166da07a7433a5c5133e19d6b40be33b5cab /README
parent595ad985c74837287493fffe680ae9c93d6059cb (diff)
downloadbrainfuck-c98e6c8e3159799254aa6f5aed904a7ec8e7c68d.tar.gz
Typos
Diffstat (limited to 'README')
-rw-r--r--README4
1 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index c93f267..fd9ac54 100644
--- a/README
+++ b/README
@@ -4,7 +4,7 @@ See http://en.wikipedia.org/wiki/Brainfuck for more details
Usage: ./brainfuck [options] [file]
Size of each data cell is 4 byte(s)
-All data cell are zeros initially
+All data cells are zeros initially
Options (defaults are in brackets):
-s num stack size (128)
@@ -28,6 +28,6 @@ Extensions:
# - comment to the end of line (useful when reading files)
Example:
- echo '+++[.-]' | ./brainfuck # count down from 3 to 0
+ echo '+++[.-]' | ./brainfuck # count down from 3 to 1
echo ',+++.;5' | ./brainfuck # shows 8
echo ',>,<[->+<]>.;4 5' | ./brainfuck # shows 4+5=9