Refactor BrainFuck interpreter to use a Registers class for state management; introduce Lua interpreter with basic structure and register handling.

This commit is contained in:
2025-04-11 21:57:42 +01:00
parent bdacec29ca
commit 81c4f80b71
6 changed files with 81 additions and 45 deletions

View File

@@ -1,3 +1,3 @@
from .__interpreter import Interpreter, opcode
from .__interpreter import Interpreter, Registers, opcode
__all__ = ["Interpreter", "opcode"]
__all__ = ["Interpreter", "Registers", "opcode"]