The version of basic copied from Martin Kerstens directory.

This commit is contained in:
em
1984-11-27 22:11:59 +00:00
parent 502a7a86af
commit 4301dfb7bf
16 changed files with 3076 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include "bem.h"
/* compile the next program in the list */
FILE *yyin;
compileprogram()
{
while( getline())
yyparse();
fclose(yyin);
}