Help for this page

Select Code to Download


  1. or download this
    russ@MyLinuxBox:~$ perl -w
    my %_ = (a => 1, b => 2);
    Can't use global %_ in "my" at - line 1, near "my %_"
    
  2. or download this
    sub mySub{
      my %Defaults = (Name     => 'Russ',
    ...
      ###
      print "The name is: $_{Name}\n";
    }