%class blex include <iostream.h> include "byacc.tab.h" include <blex.h> [a-z]+ { return token(B,yytext); } [A-Z]+ { return token(A,yytext); }