feat: Implement variables

This commit is contained in:
Alvin
2025-07-22 16:06:04 +02:00
parent 39789bd96a
commit ad1d46b6e7
4 changed files with 75 additions and 20 deletions

View File

@@ -3,7 +3,7 @@ from parser import Parser
from interpreter import Interpreter
def main():
with open('../examples/hello_world.fem', 'r') as f:
with open('../examples/variables.fem', 'r') as f:
text = f.read()
lexer = Lexer(text)