Help for this page

Select Code to Download


  1. or download this
    use Tie::File;
    
    ...
    splice(@array, 0, 100);
    
    untie @array;
    
  2. or download this
    tie @array, 'Tie::File', "filename" or die ...;
    my $i;
    ...
      $i++;
    }
    splice(@array, 0, $i);