tests/flex/hw.l
2024-03-10 15:57:35 +01:00

16 lines
118 B
Plaintext

%{
#include <stdio.h>
%}
%%
hello printf("World!\n");
%{
int i;
%}
%%
int main() {
yylex();
return 0;
}