Question #48: What gets printed? 66% on 61 times asked
my $var = 1; $main::var = 2; if ($var == $main::var) { print 'true'; } else { print 'false'; }