parser.y 50 B

1234567
  1. %token BOOLEAN
  2. %%
  3. input:
  4. BOOLEAN { $$ = $1;}
  5. ;