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, 10 insertions, 0 deletions
diff --git a/lib/FOOBAR.pm b/lib/FOOBAR.pm
new file mode 100644
index 0000000000..9013b4eb09
--- /dev/null
+++ b/lib/FOOBAR.pm
@@ -0,0 +1,10 @@
+package FOOBAR;
+
+require Exporter;
+@ISA = (Exporter);
+@EXPORT = (foo, bar);
+
+sub foo { print "FOO\n" };
+sub bar { print "BAR\n" };
+
+1;