in reply to Re^2: "last" not really outside loop block
in thread "last" not really outside loop block
becomesdo { ... next if ...; # XXX ... last if ...; # XXX ... } while cond();
for (;;) { # for ever ... next if ...; # OK ... last if ...; # OK ... last if !cond(); }
|
|---|