in reply to Re: Faster Perl, Good and Bad News
in thread Faster Perl, Good and Bad News

For example, check out these two ways to swap two variables:
$x ^= $y ^= $x ^= $y; ($x, $y) = ($y, $x);

It might surprise you to learn that these aren't even equivalent. The XORs won't work with references.

-sauoq
"My two cents aren't worth a dime.";