Skip to content

Instantly share code, notes, and snippets.

@FloydHsiu
Created April 22, 2016 09:24
Show Gist options
  • Save FloydHsiu/381db57d6480791738b3ce266cfb48a8 to your computer and use it in GitHub Desktop.
Save FloydHsiu/381db57d6480791738b3ce266cfb48a8 to your computer and use it in GitHub Desktop.
%{
#include <stdio.h>
%}
/*Identifiers*/
Id [a-zA-Z][a-zA-Z0-9]*
%%
{Id} {
printf("Id: %s\n", yytext);
}
%%
int main(int argc, char *argv[]){
yylex();
fflush(yyout);
}
int yywrap(){
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment