]> git.lizzy.rs Git - nothing.git/blob - src/script/interpreter.c
(#285) Fix failing tests
[nothing.git] / src / script / interpreter.c
1 #include <assert.h>
2 #include <math.h>
3 #include <string.h>
4
5 #include "./interpreter.h"
6
7 struct Expr eval(struct Expr expr)
8 {
9     /* TODO: eval(expr) is not implemented */
10     return expr;
11 }