Help for this page

Select Code to Download


  1. or download this
    print "And the set contains [ { sort @a } ]\n";;
    And the set contains [ brown dog fox jumps lazy over quick the the ]
    ...
    
    print "And the set contains [ ", join( ' ', sort @a ), " ]\n";;
    And the set contains [  brown dog fox jumps lazy over quick the the  ]
    
  2. or download this
    print "And the set contains [ @{[ sort @a ]} ]\n";;
    And the set contains [ brown dog fox jumps lazy over quick the the ]