Re: The distinction between "do BLOCK while COND" and "EXPR while COND" should go

[email protected] (Nathan Torkington) Thu, 31 Aug 2000 11:14:22 -0600 (MDT)
Newsgroups perl.perl6.language.flow
Message-ID <[email protected]>
I want last, next, etc. to magically work where I want them to:

  do {
    last if /booger/;
    ...
  } while ( ... );

Nat