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