Help for this page

Select Code to Download


  1. or download this
    @sorted = sort @unsorted;
    $string = join " ", @sorted;
    print $string;
    
  2. or download this
    print join( " ", sort @unsorted );