July 2001 h2xs has eXceeded its Stay Back Slide 5 Forward

Original Module.pm (Exporter Section)

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';

  • Uses an older style
  • Only requires Exporter


Copyright © 2001 GlaxoSmithKline Back Contents Forward