# New Ticket Created by Dan Jacobson # Please include the string: [perl #25261] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=25261 > $ perldoc -f sort print sort @harry; # prints AbelCaincatdogx OK, add an example to show how to print Abel Cain cat dog x for my $i (sort @harry){print $i,"\n"}; I suppose.