aboutsummaryrefslogtreecommitdiff
path: root/challenge-278/lance-wicks/perl/ch-1.pl
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-278/lance-wicks/perl/ch-1.pl')
-rw-r--r--challenge-278/lance-wicks/perl/ch-1.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/challenge-278/lance-wicks/perl/ch-1.pl b/challenge-278/lance-wicks/perl/ch-1.pl
new file mode 100644
index 0000000000..231ac32f3c
--- /dev/null
+++ b/challenge-278/lance-wicks/perl/ch-1.pl
@@ -0,0 +1,11 @@
+use strict;
+use warnings;
+
+use lib './lib';
+use String;
+
+my $string = join ' ', @ARGV;
+
+my $output = String->num_sort($string);
+
+print "\n$output\n"; \ No newline at end of file