diff options
| -rwxr-xr-x | challenge-002/jo-37/perl/ch-1.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/challenge-002/jo-37/perl/ch-1.pl b/challenge-002/jo-37/perl/ch-1.pl new file mode 100755 index 0000000000..2717f9c7a2 --- /dev/null +++ b/challenge-002/jo-37/perl/ch-1.pl @@ -0,0 +1,7 @@ +#!/usr/bin/perl + +use 5.012; +use strict; +use warnings; + +say join "\n", map $_ + 0, '000123', 123; |
