Help for this page

Select Code to Download


  1. or download this
    my @list = ('2005-12-01', '2005-11-02', '2005-12-07');
    @list = sort @list;
    print join "\n", @list;
    
  2. or download this
    @list = reverse sort @list;
    
  3. or download this
    use strict;
    use warnings;
    ...
    @sort;
    
    print join "\n", @sort;