aboutsummaryrefslogtreecommitdiff
path: root/challenge-278/lance-wicks/perl/ch-1.pl
diff options
context:
space:
mode:
authorMohammad Sajid Anwar <Mohammad.Anwar@yahoo.com>2024-07-17 23:04:54 +0100
committerGitHub <noreply@github.com>2024-07-17 23:04:54 +0100
commit9a468afbab2cd00362e7d5c726fbf1565a6d75ba (patch)
treeb434bd2c7f38de07946b5d4a8b062753ff2a0434 /challenge-278/lance-wicks/perl/ch-1.pl
parent7fb6116d76583e09c32b53f319ed71d2d33b8183 (diff)
parent304755f79fc5578a5ecd191b099d00da018acd03 (diff)
downloadperlweeklychallenge-club-9a468afbab2cd00362e7d5c726fbf1565a6d75ba.tar.gz
perlweeklychallenge-club-9a468afbab2cd00362e7d5c726fbf1565a6d75ba.tar.bz2
perlweeklychallenge-club-9a468afbab2cd00362e7d5c726fbf1565a6d75ba.zip
Merge pull request #10451 from lancew/wk-278-lw
Perl solution by Lance
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