%option noinput nounput
%{
#include "hellopair.tab.h"
int yylex(void);
%}
  
%%

[Bb]all       { return TARGET;  }

%%


int yywrap(void)
{
     return 1;
}

int yyerror(char *errormsg)
{
      fprintf(stderr, "%s\n", errormsg);
      exit(1);
}

