diff options
author | Igor <pashev.igor@gmail.com> | 2010-01-17 18:51:53 +0300 |
---|---|---|
committer | Igor <pashev.igor@gmail.com> | 2010-01-17 18:51:53 +0300 |
commit | 480040590d537354528edced47f5c3d9f3909377 (patch) | |
tree | d625c3d416ba79669395153e44ac97924bcd3ef7 /README | |
parent | ae35ca7da33bb81876f6eff4834d5f6d2f1dcbf4 (diff) | |
download | brainfuck-480040590d537354528edced47f5c3d9f3909377.tar.gz |
README
Diffstat (limited to 'README')
-rw-r--r-- | README | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +./brainfuck: Brainfuck programming language interpreter +See http://en.wikipedia.org/wiki/Brainfuck for more details + +Usage: ./brainfuck [options] [file] + +Size of each data cell is 4 byte(s) + +Options (defaults are in brackets): + -s num stack size (128) + -d num data size (30000) + +Output formats for operator '.': + -c, -i, -u, -o, -x char, signed int, unsigned int, octal, hexadecimal + + -h this help message + + file file to execute, + if omitted read stdin + +Standard operators: <>+-[]., +Extensions: ciuox - change format output (same as -c & others, see above) + +Example: + echo '+++[.-]' | ./brainfuck |