Re: next

2017-06-17 Thread yary
On Fri, Jun 16, 2017 at 11:11 PM, Gabor Szabo wrote: > I probably would not say "restart" the loop. > > There is a statement for that, "redo" restarts the loop without updating the value. my $true_count = 0; loop (my $i = 1; $i < 10; $i++) { last if ++$true_count == 6; say "\$true_count==$true

Re: The speed (improvement) of Rakudo

2017-06-17 Thread Tom Browder
On Fri, Jun 16, 2017 at 23:47 Gabor Szabo wrote: > Is there some measurements regarding the speed of Rakudo? Perl 6 is still very slow on IO compared to Perl 5. I have a read/write test suite I've been using since 2014 and it shows little improvement so far (Perl 6 takes about 10-20 times as long

Re: The speed (improvement) of Rakudo

2017-06-17 Thread Elizabeth Mattijsen
> On 17 Jun 2017, at 13:12, Tom Browder wrote: > On Fri, Jun 16, 2017 at 23:47 Gabor Szabo wrote: >> Is there some measurements regarding the speed of Rakudo? > > Perl 6 is still very slow on IO compared to Perl 5. I have a > read/write test suite I've been using since 2014 and it shows little >