package Walnuts::Rutabagas; use strict; BEGIN { use Exporter (); use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); $VERSION = '0.01'; @ISA = qw(Exporter); @EXPORT = qw(); @EXPORT_OK = qw(hello); } sub hello { print "Hello, world!\n"; } 1;