something's screwed up with im im handling string variables :/

This commit is contained in:
SpookyDervish
2025-09-06 20:54:17 +10:00
parent 459f53a4e1
commit 85331b4067
7 changed files with 199 additions and 18 deletions

View File

@@ -18,6 +18,8 @@ class StringNode:
value: str
def __repr__(self):
return "String"
def __str__(self):
return self.value
@dataclass
class IntNode:
value: float