aboutsummaryrefslogtreecommitdiff
path: root/challenge-076/bob-lied/perl/lib
diff options
context:
space:
mode:
authorboblied <boblied@gmail.com>2020-09-07 07:46:52 -0500
committerboblied <boblied@gmail.com>2020-09-07 07:46:52 -0500
commitbe667eb57b48213f99e85a15c59136e5aff8c135 (patch)
tree360f6768eccd9822b2055a2eb726f1de008e7535 /challenge-076/bob-lied/perl/lib
parent18248cc202f6108d37bb72c83dbe1427fe6bb7a8 (diff)
downloadperlweeklychallenge-club-be667eb57b48213f99e85a15c59136e5aff8c135.tar.gz
perlweeklychallenge-club-be667eb57b48213f99e85a15c59136e5aff8c135.tar.bz2
perlweeklychallenge-club-be667eb57b48213f99e85a15c59136e5aff8c135.zip
Install solution template
Diffstat (limited to 'challenge-076/bob-lied/perl/lib')
-rw-r--r--challenge-076/bob-lied/perl/lib/Task1.pm38
-rw-r--r--challenge-076/bob-lied/perl/lib/Task2.pm38
2 files changed, 76 insertions, 0 deletions
diff --git a/challenge-076/bob-lied/perl/lib/Task1.pm b/challenge-076/bob-lied/perl/lib/Task1.pm
new file mode 100644
index 0000000000..13e942cf56
--- /dev/null
+++ b/challenge-076/bob-lied/perl/lib/Task1.pm
@@ -0,0 +1,38 @@
+# vim:set ts=4 sw=4 sts=4 et ai wm=0 nu:
+#=============================================================================
+# Task1.pm
+#=============================================================================
+# Copyright (c) 2020, Bob Lied
+#=============================================================================
+# Description:
+#=============================================================================
+
+package Task1;
+
+use strict;
+use warnings;
+
+require Exporter;
+our @ISA = qw(Exporter);
+our @EXPORT = qw();
+our @EXPORT_OK = qw();
+
+sub new
+{
+ my $class = shift;
+ $class = ref($class) || $class;
+ my $self = {
+ _name1 => $_[0],
+ };
+ bless $self, $class;
+ return $self;
+}
+
+sub run
+{
+ my $self = shift;
+ return undef;
+}
+
+1;
+
diff --git a/challenge-076/bob-lied/perl/lib/Task2.pm b/challenge-076/bob-lied/perl/lib/Task2.pm
new file mode 100644
index 0000000000..e210edb216
--- /dev/null
+++ b/challenge-076/bob-lied/perl/lib/Task2.pm
@@ -0,0 +1,38 @@
+# vim:set ts=4 sw=4 sts=4 et ai wm=0 nu:
+#=============================================================================
+# Task2.pm
+#=============================================================================
+# Copyright (c) 2020, Bob Lied
+#=============================================================================
+# Description:
+#=============================================================================
+
+package Task2;
+
+use strict;
+use warnings;
+
+require Exporter;
+our @ISA = qw(Exporter);
+our @EXPORT = qw();
+our @EXPORT_OK = qw();
+
+sub new
+{
+ my $class = shift;
+ $class = ref($class) || $class;
+ my $self = {
+ _name1 => $_[0],
+ };
+ bless $self, $class;
+ return $self;
+}
+
+sub run
+{
+ my $self = shift;
+ return undef;
+}
+
+1;
+