diff options
| author | Mohammad Sajid Anwar <Mohammad.Anwar@yahoo.com> | 2024-07-17 23:04:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-17 23:04:54 +0100 |
| commit | 9a468afbab2cd00362e7d5c726fbf1565a6d75ba (patch) | |
| tree | b434bd2c7f38de07946b5d4a8b062753ff2a0434 /challenge-278/lance-wicks/perl/ch-1.pl | |
| parent | 7fb6116d76583e09c32b53f319ed71d2d33b8183 (diff) | |
| parent | 304755f79fc5578a5ecd191b099d00da018acd03 (diff) | |
| download | perlweeklychallenge-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.pl | 11 |
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 |
