Skip to content

Instantly share code, notes, and snippets.

Created May 28, 2012 18:35
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 anonymous/2820552 to your computer and use it in GitHub Desktop.
Save anonymous/2820552 to your computer and use it in GitHub Desktop.
pmichaud@kiwi:~/p6/rakudo$ cat z.p6
use v6;
my int $i = 0;
my @numbers;
until ($i == 100000 ) {
@numbers[$i] = $i;
$i++;
}
pmichaud@kiwi:~/p6/rakudo$ ./perl6 z.p6
Cannot assign to a non-container
in sub postfix:<++> at src/gen/CORE.setting:2718
in block <anon> at z.p6:7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment