if ($foo) { my $bar = "true"; } print $bar; print "again" . $bar; #-- does this still work print "and again" . $bar; #-- what about this? #### my $bar = "hello"; #-- global sub mysub { if (condition) { my $bar = "goodbye"; } print $bar; }