Comments

Log in with itch.io to leave a comment.

A fairly simple little BF system, but I very much appreciate the IDE and the puzzle progression! I question if the code pages are necessary, but I wasn't quite proficient enough to get past section 7, or even complete all the levels in sections 5 and later!

If you mean the "pages" on the right side, That's used for the '!' subprogress instruction. But yes, I do think the current subprocess implementation is not good enough. Maybe I will change to other designs, or even remove it.

------

Section 5 requires the use of nested loopings. People new to Brainfuck always stuck at calculating multiplying. Multiply is simply performing additions many times. But adding in Brainfuck will simply destroy the origin number. So what you should do is to keep a copy of it.

------

Section 7 reqiuires the use of looping as condition statements. It may be a little more difficult than the problems before. But once you get that point, you will have ideas to solve them.

------

Finally, thanks for playing.