Skip to content

Instantly share code, notes, and snippets.

@saisumit
Created November 29, 2017 01:33
Show Gist options
  • Select an option

  • Save saisumit/457139f46640adcf577a6aa9e2722c18 to your computer and use it in GitHub Desktop.

Select an option

Save saisumit/457139f46640adcf577a6aa9e2722c18 to your computer and use it in GitHub Desktop.
%{
#include <stdio.h>
%}
op "+"|"-"|"*"|"/"
%%
[a-z] { yylval=*yytext; return id; }
{op} { return (int) yytext[0]; }
\n { return(0); }
. { return err; }
%%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment