home: hub: minipeg

ref: 5b97c637b7a4148cd007d3ca35f7dea94375cc89
dir: /examples/username.peg/

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

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

%%

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