How does the Brainfuck Hello World actually work?
1. Basics To understand Brainfuck you must imagine infinite array of cells initialized by 0 each. …[0][0][0][0][0]… When brainfuck program starts, it points to any cell. …[0][0][*0*][0][0]… If you move pointer right > you are moving pointer from cell X to cell X+1 …[0][0][0][*0*][0]… If you increase cell value + you get: …[0][0][0][*1*][0]… If you … Read more