summaryrefslogtreecommitdiff
path: root/vm.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-21 16:01:46 +0100
committerubq323 <ubq323@ubq323.website>2024-06-21 16:01:46 +0100
commit81662aa56b8ad2fa397b1d3e9dd3bb398c7d1798 (patch)
treeac788aa65d938f6fe1967863e5fe2296e6eacd7b /vm.h
parent377822b957c442b2ff0882b8325033487037be2b (diff)
print -> puts
Diffstat (limited to 'vm.h')
-rw-r--r--vm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.h b/vm.h
index 609ed2c..8fa72a1 100644
--- a/vm.h
+++ b/vm.h
@@ -38,7 +38,7 @@ Thread thread_new(State *S);
typedef enum {
OP_RET,
OP_LOADK,
- OP_PRINT,
+ OP_PUTS,
OP_ADD,
OP_SUB,