summaryrefslogtreecommitdiff
path: root/projects/hackc/statements.py
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-08-31 16:59:55 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-08-31 16:59:55 +0800
commit482eed0ae339e977a618c4ab60525596426cf967 (patch)
tree080a8f912e81d4ea6da18a5eeda251938965dd0b /projects/hackc/statements.py
parent61f3490b9e6132cbad70c90637ed349a42fe7704 (diff)
hackc: idk, statements and expressions?
Diffstat (limited to 'projects/hackc/statements.py')
-rw-r--r--projects/hackc/statements.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/projects/hackc/statements.py b/projects/hackc/statements.py
index e8bc0b3..16c123e 100644
--- a/projects/hackc/statements.py
+++ b/projects/hackc/statements.py
@@ -1,4 +1,5 @@
from .expressions import Expression
+from .utils import *
class Statement:
def __init__(self):
@@ -47,3 +48,5 @@ class LetStatement:
t += 1
return (LetStatement(name, expr), t)
+ def print_verbose(self):
+ print(f"Let {self.name} be {self.expr}")