summaryrefslogtreecommitdiff
path: root/perl5/TestExec.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl5/TestExec.pm')
-rwxr-xr-xperl5/TestExec.pm18
1 files changed, 0 insertions, 18 deletions
diff --git a/perl5/TestExec.pm b/perl5/TestExec.pm
deleted file mode 100755
index cf7bcd86..00000000
--- a/perl5/TestExec.pm
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl
-
-package TestExec;
-
-use strict;
-use warnings;
-
-use Exporter;
-our @ISA = ('Exporter');
-our @EXPORT = ('test_exec');
-
-test_exec() unless caller(0);
-
-sub test_exec {
- print "this is what I do\n";
-}
-
-1;