aboutsummaryrefslogtreecommitdiff
path: root/challenge-100/lance-wicks/perl/ch-1.pl
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-100/lance-wicks/perl/ch-1.pl')
-rw-r--r--challenge-100/lance-wicks/perl/ch-1.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/challenge-100/lance-wicks/perl/ch-1.pl b/challenge-100/lance-wicks/perl/ch-1.pl
new file mode 100644
index 0000000000..78310d45ab
--- /dev/null
+++ b/challenge-100/lance-wicks/perl/ch-1.pl
@@ -0,0 +1,11 @@
+use strict;
+use warnings;
+
+use lib './lib';
+use Fun;
+
+my $fun = Fun->new;
+
+print $fun->convert($ARGV[0]);
+print "\n";
+