Skip to content

Instantly share code, notes, and snippets.

@cognominal
Last active March 25, 2021 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cognominal/be3eb3d2943799cda70805adf73ba27a to your computer and use it in GitHub Desktop.
Save cognominal/be3eb3d2943799cda70805adf73ba27a to your computer and use it in GitHub Desktop.
grammar Text {
rule TOP { <line>+ }
{
my token ws { \h+ }
rule line { [\w+] + }
}
}
my $text = q:to<OZYMANDIAS>;
I met a traveller
from an antique land
OZYMANDIAS
say Text.parse($text);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment