On 8/16/06, Dr.Ruud <[EMAIL PROTECTED]> wrote:
"Markus Laire" schreef:> my $x = 'Just Another'; > my $y := $x; > $y = 'Perl Hacker'; > > After this, both $x and $y contain the string "Perl Hacker", since > they are really just two different names for the same variable. > </quote> So "$x === Sy" stil holds.
Exactly, and because of that $a === $b does NOT hold in my example. ($a would be "Two", $b would be "One") -- Markus Laire