ack/lang/basic/src.old/compile.c

14 lines
144 B
C

#include "bem.h"
/* compile the next program in the list */
FILE *yyin;
compileprogram()
{
while( getline())
yyparse();
fclose(yyin);
}