perl5.001 patch.1f
[p5sagit/p5-mst-13.2.git] / pod / modpods / AutoLoader.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
3AutoLoader - load functions only on demand
4
5=head1 SYNOPSIS
6
7 package FOOBAR;
8 use Exporter;
9 use AutoLoader;
10 @ISA = (Exporter, AutoLoader);
11
12=head1 DESCRIPTION
13
14This module tells its users that functions in the FOOBAR package are to be
15autoloaded from F<auto/$AUTOLOAD.al>. See L<perlsub/"Autoloading">.
16