Help for this page

Select Code to Download


  1. or download this
    my @array = <FILE>;
    close FILE;
    
    # Print line 10
    print $array[10];
    
  2. or download this
    my $findline = 10;
    
    ...
        # .. do something
        last; #don't read any more
    }