Help for this page

Select Code to Download


  1. or download this
    open(LF,"$logFile") || die "Can't open $logFile: $!\n";
    open(OF,">$outputFile") || die;
    while ($line=<LF>) {
    ...
    }
    close(LF);
    close(OF);
    
  2. or download this
    for $x (1 .. 10) {<br>
        for $y (1 .. 10) {<br>
            $LoL[$x][$y] = func($x, $y);<br>
        }