summaryrefslogtreecommitdiff
path: root/pod/modpods/AutoLoader.pod
blob: 203f951e3953881302b7947cbd77894ee1caf0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
=head1 NAME

AutoLoader - load functions only on demand

=head1 SYNOPSIS

    package FOOBAR;
    use Exporter;
    use AutoLoader;
    @ISA = (Exporter, AutoLoader);

=head1 DESCRIPTION

This module tells its users that functions in the FOOBAR package are to be
autoloaded from F<auto/$AUTOLOAD.al>.  See L<perlsub/"Autoloading">.