--- Larry Wall <[EMAIL PROTECTED]> wrote:
> On Fri, Jul 09, 2004 at 11:23:09AM -0700, Austin Hastings wrote:
> : Can there reasonably be block-postfix modifiers?
> :
> : { print; next; } if|when /stgh/;
>
> If there reasonably can be block modifiers, I will unreasonably
> declare that there can't be.
Be as unreasonable as you want -- the grammar's open. :)
> You can always say:
>
> do { print; next; } if|when /stgh/;
>
> (It's still the case that do-while is specifically disallowed,
> however.)
What about C<loop>?
do { print ; next } loop (; true ;);
=Austin