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