Help for this page

Select Code to Download


  1. or download this
     perl -le '@x=(9,8,4,3,6,5); print ((sort @x)[0])'
    
  2. or download this
     perl -le '@x=(9,8,4,3,6,5); print join ":", ((sort @x)[1..$#x])'
    
    ...
    
    #using above:
    @array = ((sort @array)[1..$#array])