8 lines
84 B
C
8 lines
84 B
C
|
#include "lexer.h"
|
||
|
#include "parser.h"
|
||
|
|
||
|
void main() {
|
||
|
yydebug = 1;
|
||
|
yyparse();
|
||
|
}
|