Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    @test = (qw/001 012 010 100/);
    @test = sort @test;
    print "@test\n"; #prints "001 010 012 100"