Help for this page

Select Code to Download


  1. or download this
    open(my $IN,'<','in.txt') || die "cannot open in.txt - $!\n";
    my @output;
    while(<$IN>)
    ...
            push (@output, $_);
            @output = sort @output;
    }