2012-12-09 12:12:57 +00:00

12 lines
112 B
C

#include <stdio.h>
#include <stdlib.h>
#include "rule.peg.c"
int main()
{
while (yyparse());
return 0;
}