aboutsummaryrefslogtreecommitdiff
path: root/challenge-076/bob-lied/perl/lib/Task2.pm
diff options
context:
space:
mode:
authorMohammad S Anwar <Mohammad.Anwar@yahoo.com>2020-09-11 03:40:00 +0100
committerGitHub <noreply@github.com>2020-09-11 03:40:00 +0100
commitc2fbd3853bf867a9f310d4e6a6783007cb6e4ca9 (patch)
tree2ec7cf6940ea43e79bee5f6adcecb98a8aa05cba /challenge-076/bob-lied/perl/lib/Task2.pm
parent04a188441e2ade8e2e2998ac4f046ae166ee8f91 (diff)
parent8bd8131235bf332ba50214de98eebe61651b7591 (diff)
downloadperlweeklychallenge-club-c2fbd3853bf867a9f310d4e6a6783007cb6e4ca9.tar.gz
perlweeklychallenge-club-c2fbd3853bf867a9f310d4e6a6783007cb6e4ca9.tar.bz2
perlweeklychallenge-club-c2fbd3853bf867a9f310d4e6a6783007cb6e4ca9.zip
Merge pull request #2247 from boblied/master
Solution to 076 Task 2, Word Search
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;
-