diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-12-30 14:18:15 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-12-30 14:18:15 +0100 |
commit | ecc06c082036aa93f6810ec21e73610c55f5a57b (patch) | |
tree | aff479c3bc5b39ead9f65dffb01d399b341fa4ba /src/expression.h | |
download | uwu-lang-ecc06c082036aa93f6810ec21e73610c55f5a57b.tar.xz |
Initial commit
Diffstat (limited to 'src/expression.h')
-rw-r--r-- | src/expression.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/expression.h b/src/expression.h new file mode 100644 index 0000000..da74620 --- /dev/null +++ b/src/expression.h @@ -0,0 +1,14 @@ +#ifndef _EXPRESSION_H_ +#define _EXPRESSION_H_ + +typedef enum +{ + EX_UNINIT, + EX_INTLIT, + EX_STRLIT, + EX_ARGNUM, + EX_FNNAME, + EX_FNCALL, +} ExpressionType; + +#endif |