Skip to content

Instantly share code, notes, and snippets.

@thunderInfy
Created March 15, 2020 22:03
Show Gist options
  • Select an option

  • Save thunderInfy/dbe065c18f10ea9798a3650a72f8f13e to your computer and use it in GitHub Desktop.

Select an option

Save thunderInfy/dbe065c18f10ea9798a3650a72f8f13e to your computer and use it in GitHub Desktop.
%{
#include <stdio.h>
#include "bisoncode.tab.h"
%}
STRING ([a-zA-Z])+
NUMBER [0-9]+
%%
{STRING} {sscanf(yytext, "%s", yylval.name); return STRING;}
{NUMBER} {return NUMBER;}
";" {return (SEMICOLON);}
. {return OTHER;}
%%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment