This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Undo the renaming of the Unicode data files; the simple
[perl5.git] / ext / ByteLoader / ByteLoader.pm
1 package ByteLoader;
2
3 use XSLoader ();
4
5 $VERSION = 0.04;
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.04;
21   <byte code>
22
23   use ByteLoader 0.04;
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