Help for this page

Select Code to Download


  1. or download this
      foreach (@lines) {
        my ($name,$score) = split /:/, $_;
          $hash_ref->{ 'name' } = $name;  # replaces the old 'name' entry
          $hash_ref->{ 'score' } = $score; # replaces the previous 'score'
    + entry
      }
    
  2. or download this
    ##Array of Hashrefs:
      my @entries;
    ...
      }
      return($hash_ref);
    }