Objective
Build a tiny interpreter for an esoteric language whose entire instruction set fits in eight ASCII characters and whose only state is a 2048-byte tape of unsigned cells plus a single data pointer.
Steps
$ ./brainfuck "+++++++++[>++++++++<-]>."
H
$ ./brainfuck "+++[>+++[>++++<-]<-]>>."
$
$ ./brainfuck
(no output)
Expected files
Allowed functions

Objective
Build a tiny interpreter for an esoteric language whose entire instruction set fits in eight ASCII characters and whose only state is a 2048-byte tape of unsigned cells plus a single data pointer.
Steps
$ ./brainfuck "+++++++++[>++++++++<-]>."
H
$ ./brainfuck "+++[>+++[>++++<-]<-]>>."
$
$ ./brainfuck
(no output)
Expected files
Allowed functions

Tests
Run the tests to grade your code