diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 23 |
1 files changed, 2 insertions, 21 deletions
@@ -33,30 +33,11 @@ int foci_getchar(void) int main() { - char buf[128]; - init(); for (;;) { - char c; - do c = getchar(); - while (!isgraph(c)); - - char *s = buf; - do { - *s++ = c; - c = getchar(); - } while (isgraph(c)); - bool eol = c == '\n' || c == '\r'; - *s = '\0'; - - if (strcmp(buf, "bye") == 0) - break; - - parse_word(buf, s); - - if (eol) - printf(compiling() ? "compiled <%d>\n" : "ok <%d>\n", depth()); + interpret(); + printf(compiling() ? "compiled <%d>\n" : "ok <%d>\n", depth()); } return 0; |