Help for this page

Select Code to Download


  1. or download this
    @array = ('george', 'mike', 'steve', 'ray', 'paul', 'brian', 'peter', 
    +'amos');
    
    @sorted = sort @array;
    
  2. or download this
    @sorted = sort {$a <=> $b } @array;