Brainfuck Interpreter

An esoteric language with only 8 instructions

Sample Programs
Source Code
50
Instruction Pointer
Memory Tape
Output
Input Buffer (pre-fill for , instructions)
Instructions: 0 Pointer: 0 IP: 0 Cells Used: 0 Status: Ready
Instruction Reference
> move pointer right    < move pointer left    + increment cell    - decrement cell    . output ASCII    , read input    [ jump past ] if cell is 0    ] jump back to [ if cell is non-zero

Input Required

The program needs a character (, instruction)