On 5/30/05, Gerd Pokorra <[EMAIL PROTECTED]> wrote:
> 
>   Hello!
> 
> Why is the do {...} literal added in Pugs 6.2.5?

Because do {...} is a part of the language, while or no while.  Perl 6
is supposed to die if you say do {...} while, which isn't implemented
in pugs yet.  But the special delayed evaluation of the condition
isn't in pugs either, and it shouldn't be.

I expect it should be pretty simple to implement:

>   loop {...} while EXPR;
>   loop {...} until EXPR;

Luke

Reply via email to