Added power operator '^', added OP_POW

- added TOKEN_CARROT to clex.[ch]
This commit is contained in:
2021-02-10 17:26:20 -06:00
parent 24bbc22cd4
commit 1539a7e676
5 changed files with 20 additions and 3 deletions

View File

@@ -40,6 +40,7 @@ typedef enum {
OP_MULT,
OP_DIV,
OP_MOD,
OP_POW,
OP_NOT,
OP_NEGATE,
OP_COUNT,