Help for this page

Select Code to Download


  1. or download this
    if ($foo) {
       my $bar = "true";
    }
    ...
    print "again" . $bar; #-- does this still work
    <cut 500 lines>
    print "and again" . $bar; #-- what about this?
    
  2. or download this
    my $bar = "hello"; #-- global
    
    sub mysub {
    ...
      }
      print $bar;
    }