Help for this page

Select Code to Download


  1. or download this
    open(REPLAY_FILE, "+<$rpl")
    
  2. or download this
    open my $REPLAY_FILE, '+<', $rpl or die $!;
    while (my $line = <$REPLAY_FILE>) {
      #... do stuff with $line
    }
    close $REPLAY_FILE;