Skip to content

Instantly share code, notes, and snippets.

@pmichaud
Created October 29, 2009 18:18
Show Gist options
  • Save pmichaud/221666 to your computer and use it in GitHub Desktop.
Save pmichaud/221666 to your computer and use it in GitHub Desktop.
$ cat x
grammar ABC {
regex TOP {
abc
:my $*XYZ := 4;
<?ABCtest>
}
method ABCtest() {
say('$*XYZ=' ~ $*XYZ);
self;
}
}
ABC.parse('abc');
$ ./nqp x
$*XYZ=4
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment