Help for this page

Select Code to Download


  1. or download this
    # header
    1
    ...
    4
    5
    6
    
  2. or download this
    use Tie::File;
    tie @f, 'Tie::File', "file.txt" or die $!;
    foreach (@f[1..$#f]) {
        print $_, "\n";
    }
    
  3. or download this
    1
    2
    ...
    4
    5
    6