diff options
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -2,7 +2,6 @@ #include <stdio.h> #include "read.h" -#include "run.h" AstNode read() { AstNode ret; @@ -13,8 +12,3 @@ AstNode read() { return ret; } -int main() { - Ht e = ht_new(); - for (;;) printf("%d\n",eval(&e, read())); -} - |