aboutsummaryrefslogtreecommitdiff
path: root/src/test/locale/sort-test.pl
blob: 7d9b8ef03406ce2b52cdd4c6c8f7bd7bdae8c539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/local/bin/perl -w
use locale;

open(INFILE, "<$ARGV[0]");
chop(my(@words) = <INFILE>);
close(INFILE);

$"="\n";
my(@result) = sort @words;

print "@result\n";