On Tue, 31 Jul 2001 23:51:48 +0200, Abigail wrote:

>The do {{EXPR; last}}
>is just a general way of forcing void context on an expression - even
>in the middle of some other statement.

"Just"? But last doesn't work properly inside a do BLOCK.

        {
             print "pre\n";
             do { print 1+2+3; last; };
             print "post\n";
        }
-->
        pre
        6

No "post", because of the "last".

-- 
        Bart.

Reply via email to