Help for this page

Select Code to Download


  1. or download this
    @foo = (0,1);
    $hash{00} = "data";
    ...
    print '$hash{$foo[0] . "0"} is ', $hash{$foo[0] . "0"}, "\n";
    print '$hash{$foo[1] . "0"} is ', $hash{$foo[1] . "0"}, "\n";
    print '$hash{10} is ', $hash{10} , "\n";
    
  2. or download this
    $hash{00} is data
    $hash{$foo[0] . "0"} is 
    $hash{$foo[1] . "0"} is moredata
    $hash{10} is moredata