home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / MacPerl Source ƒ / MacPerl5 / pod / modpods / AutoLoader.pod < prev    next >
Encoding:
Text File  |  1994-12-26  |  333 b   |  17 lines  |  [TEXT/MPS ]

  1. =head1 NAME
  2.  
  3. AutoLoader - 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.  
  14. This module tells its users that functions in the FOOBAR package are to be
  15. autoloaded from F<auto/$AUTOLOAD.al>.  See L<perlsub/"Autoloading">.
  16.  
  17.