Skip to content

Instantly share code, notes, and snippets.

@samcv
Created April 17, 2017 20:09
my token notcolon { <-[:] >+ }; 'blah:' ~~ / ( <notcolon> ) ':' /; say $0;
my $notcolon = / <-[:] >+ /;
say 'blah:' ~~ / ( $notcolon ) /;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment