OnePixel - brainfuck interpreter where instead of text, pictures are one pixel high
All functions are the same as in the original brainfuck (only there are no loops)
OnePixel have 1024 memory cells 0 each
'* = 0-255'
+ = {43,*,*,255}
- = {45,*,*,255}
< = {60,*,*,255}
> = {62,*,*,255}
. = {46,*,*,255}
, = {44,*,*,255}
- The image file must be .png only
- Input must be number only
- python3 and pip
- PIL/pillow python lib
- termcolor python lib
python3 onepixel.py [yourfile.png]

