> > case2 - hyperoperator :
> >
> > my $result = 0;
> > for ($a,$b,$c) {
> > if ($x == $_) { $result =1; last}
> > }
>
> Not correct. The second case is the same as:
>
> ($x == $a, $x == $b, $x == $c)
>
> which reduces in effect to:
>
> $x == $c
Hold on---something's awry here. I thought C comma was going away, and
being replaced with an always-listifying comma. So wouldn't it in effect
reduce to
3
or.. that's just for arrays. But I'm sure I read that there's no more C
comma.
Luke
