summaryrefslogtreecommitdiffstats
path: root/src/test/locale/sort-test.pl
blob: b61968b7e0a55ad8ad925c5004c90ec19a6466df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /usr/bin/perl

use strict;
use warnings;
use locale;

open(my $in_fh, '<', $ARGV[0]) || die;
chop(my (@words) = <$in_fh>);
close($in_fh);

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

print "@result\n";