summaryrefslogtreecommitdiff
path: root/run.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-07-31 18:51:46 +0100
committerubq323 <ubq323@ubq323.website>2023-07-31 18:51:46 +0100
commitf80e73ee8d7f7b68f403033001c632e91cb5ac68 (patch)
tree359f785f785949191286214681b56058b4f025c4 /run.h
parentcd6edc3cb4423672e92d3daaad8e12965ebc70e3 (diff)
bytecode vm start, can print constants currently
Diffstat (limited to 'run.h')
-rw-r--r--run.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.h b/run.h
index 155b59b..291897c 100644
--- a/run.h
+++ b/run.h
@@ -3,8 +3,8 @@
#include "ast.h"
#include "ht.h"
+#include "val.h"
-int eval(Env *s, AstNode a);
#endif