http://qs321.pair.com?node_id=421191


in reply to Reverse Alphabetically Sorting an array

BTW, your sub's code:
sub reversi { my (@array) = @_; print resverse sort(@array); }
should be:
sub reversi { my (@array) = @_; print reverse sort(@array); }
There's a typo on reverse.

Regards,