Skip to content

Instantly share code, notes, and snippets.

@dmateos
Created November 8, 2009 03:21
Show Gist options
  • Save dmateos/229073 to your computer and use it in GitHub Desktop.
Save dmateos/229073 to your computer and use it in GitHub Desktop.
%{
#include <stdio.h>
%}
%option noyywrap
%%
[0-9]+ {
printf("Integer %s\n", yytext);
}
[a-z]+ {
printf("String %s\n", yytext);
}
. {
}
%%
int main() {
yylex();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment