Help for this page

Select Code to Download


  1. or download this
    foreach $line (@lines) { 
      ($time, $id, $open) = parse($line);
    ...
      ($time, $id, $code) = parse($line);
      $total += $time-$open;
    }
    
  2. or download this
    while (@lines) { 
      $line = shift(@lines);
    ...
        delete $hash{$id}{open};
      }
    }