diff options
Diffstat (limited to 'starts/meaning-vm/level-2-wip-stmtexprs/funcs.hpp')
-rw-r--r-- | starts/meaning-vm/level-2-wip-stmtexprs/funcs.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/starts/meaning-vm/level-2-wip-stmtexprs/funcs.hpp b/starts/meaning-vm/level-2-wip-stmtexprs/funcs.hpp new file mode 100644 index 0000000..6af6ce1 --- /dev/null +++ b/starts/meaning-vm/level-2-wip-stmtexprs/funcs.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include "common.hpp" +#include "../level-1/ref.hpp" + +namespace intellect { +namespace level2 { + +statementref commaop(ref self, ref other); +statementref assignop(ref self, ref other); +ref subop(ref self, ref other); + +} +} |