From: Perl 5 Porters Date: Sun, 25 Aug 1996 00:08:57 +0000 (+0000) Subject: Fix a minor nit regarding Exporter. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cf6f4e918622ec80f33cb4c23b8f8c844c6c0755;p=p5sagit%2Fp5-mst-13.2.git Fix a minor nit regarding Exporter. --- diff --git a/pod/perlmod.pod b/pod/perlmod.pod index 9aa4729..9a1f222 100644 --- a/pod/perlmod.pod +++ b/pod/perlmod.pod @@ -201,8 +201,8 @@ symbols. Or it can do a little of both. For example, to start a normal module called Fred, create a file called Fred.pm and put this at the start of it: - package Fred; - require Exporter; + package Fred; + use Exporter (); @ISA = qw(Exporter); @EXPORT = qw(func1 func2); @EXPORT_OK = qw($sally @listabob %harry func3);