in reply to Re^2: var comparison
in thread var comparison

Why, with the following expected behavior?

use Modern::Perl; my $var1 = 'foo'; my $var2 = \$var1; say $var2; # prints SCALAR(0x2590b8) say "$var2"; # prints SCALAR(0x2590b8) say $var1 ~~ [qw/foo bar/]; # is true: prints 1 say $var2 ~~ [qw/foo bar/]; # is false: prints nothing say "$var2" ~~ [qw/foo bar/]; # is false: prints nothing

Replies are listed 'Best First'.
Re^4: var comparison
by LanX (Saint) on Sep 07, 2012 at 07:35 UTC
      I see... Maybe "smart matching" promises to do too many things...