home: hub: minipeg

ref: bc90c2ec4f3d8b0480c4cdb38e11dca49812fe1d
dir: /examples/username.leg/

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

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

%%

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