From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314151617—181920212223 # an exporter - 3 subs, 1 documented, 2 exportablepackage Simple6;use strict;require Exporter;use base 'Exporter';use vars qw/@EXPORT @EXPORT_OK/;@EXPORT = qw(foo);@EXPORT_OK = qw(foo bar);sub foo {}sub bar {}sub baz {};1;__END__HideShow 6 lines of Pod=item barthis is bar=cut
# an exporter - 3 subs, 1 documented, 2 exportable
package
Simple6;
use
strict;
require
Exporter;
base
'Exporter'
;
vars
qw/@EXPORT @EXPORT_OK/
@EXPORT
=
qw(foo)
@EXPORT_OK
qw(foo bar)
sub
foo {}
bar {}
baz {};
1;
__END__
=item bar
this is bar
=cut