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

[email protected] (Tom Christiansen) Mon, 04 Sep 2000 13:45:35 -0600
Newsgroups perl.perl6.language.flow
Message-ID <3436.968096735@chthon>
>package main;
>sub fn { return (3, 5, 7) }
>tie $x, 'MaiTai';
>$x = fn;
>$ /tmp/foo
>STORE: 7

>Why don't I see three STOREs?

Because Perl is too clever to bother. :-)

--tom