]> git.lizzy.rs Git - nothing.git/blob - src/script/interpreter.h
(#285) Introduce equals operation
[nothing.git] / src / script / interpreter.h
1 #ifndef INTERPRETER_H_
2 #define INTERPRETER_H_
3
4 #include "expr.h"
5
6 bool equal(struct Expr obj1, struct Expr obj2);
7
8 struct Expr assoc(struct Expr key);
9
10 struct Expr eval(struct Expr expr);
11
12 #endif  // INTERPRETER_H_