summaryrefslogtreecommitdiff
path: root/lib/FOOBAR.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/FOOBAR.pm')
-rw-r--r--lib/FOOBAR.pm10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/FOOBAR.pm b/lib/FOOBAR.pm
deleted file mode 100644
index 9013b4eb09..0000000000
--- a/lib/FOOBAR.pm
+++ /dev/null
@@ -1,10 +0,0 @@
-package FOOBAR;
-
-require Exporter;
-@ISA = (Exporter);
-@EXPORT = (foo, bar);
-
-sub foo { print "FOO\n" };
-sub bar { print "BAR\n" };
-
-1;