Help for this page

Select Code to Download


  1. or download this
    print "Sorted table...\n\n";
    {
        no warnings 'numeric';
        print sort { $a <=> $b } @table;
    }
    
  2. or download this
    print "Sorted table...\n\n";
    {
        # no warnings 'numeric';
        print sort { $a cmp $b } @table;
    }