I have this code
3 @alpha=("Names","Steve","Linus","Larry","Bill");
4 @alpha=sort(@alpha);
5 foreach $name (@alpha){print $name."\n";}
6 #print @alpha;
Suppose I only wanted to sort $alpha 1-4 (every line but the first one), how would I go about this? I'm looking...