diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-21 00:25:55 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-21 00:25:55 +0100 |
commit | a03973653262fbbfed7ce42dfa39646d16bdc98f (patch) | |
tree | fcf222d1e67b715af8173fda8edcab3b6c0793cd /vm.h | |
parent | f331192861d8ba02af7fd47f2e0c6d6db7515007 (diff) |
while loops, comparisons, modulo, fizzbuzz
Diffstat (limited to 'vm.h')
-rw-r--r-- | vm.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -44,6 +44,11 @@ typedef enum { OP_SUB, OP_MUL, OP_DIV, + OP_MOD, + + OP_EQU, + OP_CMP, + OP_DROP, |