Looks like the brainfuck is working. It can do a hello world program.

This commit is contained in:
Zed A. Shaw 2024-08-11 12:34:37 -04:00
parent 5b18849ddc
commit 38104f60f3
3 changed files with 78 additions and 4 deletions

View file

@ -18,6 +18,8 @@ class Brainfucker {
void run(int count);
void set_code(string &code);
void reset();
void jump_backward();
void jump_forward();
};
class GameEngine {