home: hub: minipeg

ref: 1f4cc30fe9cbdf0d9ca4abfb93ac85c175fc6500
dir: /examples/username.peg/

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

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

%%

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