aboutsummaryrefslogtreecommitdiff
path: root/challenge-076/bob-lied/perl/lib/Task2.pm
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-076/bob-lied/perl/lib/Task2.pm')
-rw-r--r--challenge-076/bob-lied/perl/lib/Task2.pm38
1 files changed, 0 insertions, 38 deletions
diff --git a/challenge-076/bob-lied/perl/lib/Task2.pm b/challenge-076/bob-lied/perl/lib/Task2.pm
deleted file mode 100644
index e210edb216..0000000000
--- a/challenge-076/bob-lied/perl/lib/Task2.pm
+++ /dev/null
@@ -1,38 +0,0 @@
-# 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;
-