blob: ba8004efdf79ee55790bf44e07148a4febb707b0 [file] [log] [blame]
%{
extern int yylex(void);
extern int yyerror(char *s);
%}
%token BOOLEAN
%%
input:
BOOLEAN { $$ = $1;}
;