in reply to Turn off warning for undefined value in comparison?

use strict; use warnings; my $foo = ""; if ( $foo ne "bar" ) { print "lala\n"; }
Why is it undefined in the first place?


-Waswas