diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-20 23:26:18 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-20 23:26:18 +0100 |
commit | f331192861d8ba02af7fd47f2e0c6d6db7515007 (patch) | |
tree | 9752cdea672d64f3ebfd3ee142185468510708fd /vm.h | |
parent | fa8891ffe017ae890f0ef07915cf8b52acd7304a (diff) |
add (if cond if-true if-false) builtin
Diffstat (limited to 'vm.h')
-rw-r--r-- | vm.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -53,6 +53,10 @@ typedef enum { OP_TRUE, OP_FALSE, OP_NIL, + + OP_0BRANCH, + OP_SKIP, + OP_REDO, } Op; int runvm(State *S); |