Help for this page

Select Code to Download


  1. or download this
    my %names = (file1 => "tom", file2 => "bob", file3 => "joe");
    
  2. or download this
    $names{file2} = "sam";
    
  3. or download this
    for (keys %name){
       print "$_ = $names{$_}\n";
    }