http://www.perlmonks.org?node_id=1010063


in reply to Re: How to change these small one-liners into Perl6 code?
in thread How to change these small one-liners into Perl6 code?

> 1. For some reason, Rakudo does not recognize the "LOOP:" construct, I just can't use "goto LOOP" to jump to a label.

loop is a control keyword in perl6 replacing c-style For Loops, IIRC to avoid the confusion with Foreach Loops.

You can't use a keyword as a label.

Cheers Rolf