We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e7a9f3 commit 7e45aebCopy full SHA for 7e45aeb
doc/Language/faq.pod
@@ -513,7 +513,7 @@ Examples:
513
514
class Foo { has $.i is rw};
515
516
- for (1..10000) -> $i {
+ for (1..1000000) -> $i {
517
my $obj = Foo.new;
518
$obj.i = $i;
519
say $obj.i;
@@ -526,7 +526,7 @@ Examples:
526
527
has i => ( is=> 'rw');
528
529
- for my $i (1..10000) {
+ for my $i (1..1000000) {
530
my $obj = Foo->new;
531
$obj->i($i);
532
say $obj->i;
0 commit comments