]> git.lizzy.rs Git - uwu-lang.git/blob - src/expression.h
Initial commit
[uwu-lang.git] / src / expression.h
1 #ifndef _EXPRESSION_H_
2 #define _EXPRESSION_H_
3
4 typedef enum 
5 {
6         EX_UNINIT,
7         EX_INTLIT,
8         EX_STRLIT,
9         EX_ARGNUM,
10         EX_FNNAME,
11         EX_FNCALL,
12 } ExpressionType;
13
14 #endif