June 2001 Making a Module Back Slide 18 Forward

Module.pm (1 of 4)

package Sample::Module;

use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);

require Exporter;

@ISA = qw(Exporter AutoLoader);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw(
	
);
$VERSION = '0.01';

  • The parts in our BEGIN block from before


Copyright © 2001 R. Geoffrey Avery Back Contents Forward