Brainfuck Tape Commands manual

<

Move tape pointer left.

after do <
before do <
>

Move tape pointer right.

before do >
after do >
+

tape entity += 1

0
 > 
1
-

tape entity -= 1

1
 > 
0
.

output the byte on the tape entity pointed

Set to 46: +++++[<+++++++++>-]<+
.

Output goes here

,

input a byte to the tape entity pointed

,.

Input goes here

Output goes here

[

If the byte on the tape entity pointed is 0x0, than jump to the matching ].

]

If the byte on the tape entity pointed isn't 0x0, than jump to the matching [.

(

[ Working Draft ] Start a function defination. The char after the ( is used as the function name, and the commands between ( and ) are function body. Functions are like calls in assembly.