home: hub: minipeg

ref: 2223d5f76881d3edce15c6a23e83f82cb04fcdd5
dir: /examples/username.peg/

View raw version
%{
#include <unistd.h>
%}

start =	"username"	{ printf("%s", getlogin()); }
|	< . >		{ putchar(yytext[0]); }

%%

int main()
{
  while (yyparse());
  return 0;
}