Help for this page

Select Code to Download


  1. or download this
    # the first time through the loop, $score has no value!
    $sum = $sum + $score;
    ($name, $score) = split(/:/, $line);
    
  2. or download this
    ($name, $score) = split(/:/, $line);
    $sum = $sum + $score;