summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/eval.c b/eval.c
new file mode 100644
index 0000000..baabf21
--- /dev/null
+++ b/eval.c
@@ -0,0 +1,15 @@
+#include <u.h>
+#include <libc.h>
+#include <bio.h>
+
+#include "apl9.h"
+
+Rune *errormsg;
+
+Datum *
+eval(Datum *tokens, int *ntoks)
+{
+ *ntoks = 0;
+ errormsg = L"Evaluator not written yet";
+ return tokens;
+} \ No newline at end of file