Help for this page

Select Code to Download


  1. or download this
    use Tie::File;
    use strict;
    ...
            print @a
        }
    }
    
  2. or download this
    use IO::File;
    use strict;
    ...
        no warnings;
        print join( "\t", @a ), "\n";
    }