Next Making Programs Faster 100

1+1=0

        while (<>) {
          my ($n, $text) = split /: /, $_, 2;
          $line[$n] = $text;
        }
        $#line = 1000000;
        while (<>) {
          my ($n, $text) = split /: /, $_, 2;
          $line[$n] = $text;
        }

Next Copyright © 2003 M. J. Dominus