diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-20 21:45:57 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-20 21:45:57 +0100 |
commit | fa8891ffe017ae890f0ef07915cf8b52acd7304a (patch) | |
tree | 7478faee1981c1c98ee5e88e6c56529f83a64817 /vm.h | |
parent | 9a7d1b1d41f4b3bb3387e7bbe77105d0089803d0 (diff) |
add true, false, nil keywords
Diffstat (limited to 'vm.h')
-rw-r--r-- | vm.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -49,8 +49,12 @@ typedef enum { OP_GETGLOBAL, OP_SETGLOBAL, + + OP_TRUE, + OP_FALSE, + OP_NIL, } Op; -void runvm(State *S); +int runvm(State *S); #endif |