blob: baabf21ea63c0cfe724fcb3d4d8ff3f4ff39c873 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}
|