🐐 Better arrays

This commit is contained in:
2026-04-01 11:53:13 +02:00
parent 74ad338b63
commit b6de7befcd
4 changed files with 42 additions and 25 deletions

View File

@@ -163,7 +163,7 @@ class DataArray(Node):
def print(self):
items = ", ".join(i.print() for i in self.content)
return f"[({items})]"
return f"[{items}]"
def _eval(self, vtable):
vals = []