farmsay/farmsay.l
2024-02-22 20:48:16 +01:00

21 lines
344 B
Plaintext

%{
#include "farmsay.tab.h"
extern void yyerror(...);
%}
%option noyywrap
%option nodefault
%%
<INITIAL>{
\.[[:space:]]* { return DOT; }
\![[:space:]]* { return BANG; }
\?[[:space:]]* { return QUESTIONMARK; }
. { yylval.strval = yytext; return STRING; }
\n { ; }
QUACK { return QUACK; }
}
%%