blob: 9b4a3d5a01137caddd4d80990acb87c55fef5aee [file]
%{
#include <stdio.h>
extern int yylex(void);
extern int yyerror(char *s);
extern FILE *yyin;
%}
%token BOOLEAN
%%
input:
BOOLEAN { $$ = $1;}
;