> On 13 Jun 2017, at 19:34, Gabor Szabo <szab...@gmail.com> wrote: > > I just managed to write > > while True { > ... > break if $code eq 'exit'; > ... > } > > > I wonder if Rakudo could be more cleaver in this particular case and > remind me to use 'last' instead of 'break'.
Is the undeclared sub error not helpful enough? Alternately, you could do: my &break := &last; and have it just do the right thing :-) Finally, while True { is better written as: loop { :-) Liz