home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _83d28e56e499c7bbeb375b1e01f0a1ad < prev    next >
Text File  |  2000-03-15  |  643b  |  41 lines

  1. package ByteLoader;
  2.  
  3. use XSLoader ();
  4.  
  5. $VERSION = 0.03;
  6.  
  7. XSLoader::load 'ByteLoader', $VERSION;
  8.  
  9. # Preloaded methods go here.
  10.  
  11. 1;
  12. __END__
  13.  
  14. =head1 NAME
  15.  
  16. ByteLoader - load byte compiled perl code
  17.  
  18. =head1 SYNOPSIS
  19.  
  20.   use ByteLoader 0.03;
  21.   <byte code>
  22.  
  23.   use ByteLoader 0.03;
  24.   <byte code>
  25.  
  26. =head1 DESCRIPTION
  27.  
  28. This module is used to load byte compiled perl code. It uses the source
  29. filter mechanism to read the byte code and insert it into the compiled
  30. code at the appropriate point.
  31.  
  32. =head1 AUTHOR
  33.  
  34. Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
  35.  
  36. =head1 SEE ALSO
  37.  
  38. perl(1).
  39.  
  40. =cut
  41.