Skip to content

Instantly share code, notes, and snippets.

@masak
Created August 25, 2009 21:09
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 masak/175034 to your computer and use it in GitHub Desktop.
Save masak/175034 to your computer and use it in GitHub Desktop.
$ cat > a
my $i;
die '' if /^ \#/;
++$i;
1;
$ perl6 a
Statement not terminated properly at line 4, near "1;\n"
in Main (src/gen_setting.pm:3460)
$ cat > b
my $i;
die '' if /\#/;
++$i;
$ perl6 b
perl6regex parse error: Quantifier follows nothing in regex at offset 24, found '+'
in Main (src/gen_setting.pm:3460)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment