This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
integrate cfgperl changes into mainline
[perl5.git] / ext / ByteLoader / ByteLoader.pm
CommitLineData
b295d113
TH
1package ByteLoader;
2
b295d113
TH
3require DynaLoader;
4
5@ISA = qw(DynaLoader);
6
7$VERSION = 0.01;
8
9bootstrap ByteLoader $VERSION;
10
11# Preloaded methods go here.
12
131;
14__END__
15
16=head1 NAME
17
18ByteLoader - load byte compiled perl code
19
20=head1 SYNOPSIS
21
22 use ByteLoader 0.01;
23 <byte code>
24
25 use ByteLoader 0.01;
26 <byte code>
27
28=head1 DESCRIPTION
29
30This module is used to load byte compiled perl code. It uses the source
31filter mechanism to read the byte code and insert it into the compiled
32code at the appropriate point.
33
34=head1 AUTHOR
35
36Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
37
38=head1 SEE ALSO
39
40perl(1).
41
42=cut