in reply to Finding the Shortest Element in an Array
print my $shortest = ( sort { length($a) <=> length($b) } qw( hello su +perduper hi ) )[0]; [download]
:)