nearly working, gotta get converting numbers to strings working

This commit is contained in:
SpookyDervish
2025-09-06 21:24:05 +10:00
parent 23ec72e961
commit 85a547780d
4 changed files with 62 additions and 17 deletions

View File

@@ -25,6 +25,8 @@ class IntNode:
value: float
def __repr__(self):
return "Int"
def __str__(self):
return str(self.value)
@dataclass
class FloatNode:
value: float