Many changes:
[Marmot.git] / forth.c
blobe42e3de9738ed7ddb787532de903e9f388d61b28
1 /*
2 * forth.c --
4 * Forth interpreter.
5 */
8 #define MAXWORDLEN 255
13 void
14 ForthMain(void)
16 char c, *tokStart, *tokEnd;
18 while (1) {