summaryrefslogtreecommitdiffstats
path: root/tests/langbench/sort.pl
blob: be73936d9f6db4e196f20102a5a3e291d18f53af (plain)
1
2
3
4
5
6
7
while (<>) {
	push(@l, $_);
}

foreach $_ (sort(@l)) {
	print;
}