Compare the wincred helper against its original in compat.
[msysgit.git] / lib / perl5 / 5.8.8 / msys / ByteLoader.pm
blob5ff3c91370c3f156cc1929452355305b01fcfbab
1 package ByteLoader;
3 use XSLoader ();
5 our $VERSION = '0.06';
7 XSLoader::load 'ByteLoader', $VERSION;
9 1;
10 __END__
12 =head1 NAME
14 ByteLoader - load byte compiled perl code
16 =head1 SYNOPSIS
18 use ByteLoader 0.06;
19 <byte code>
21 or just
23 perl -MByteLoader bytecode_file
25 =head1 DESCRIPTION
27 This module is used to load byte compiled perl code as produced by
28 C<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
29 the byte code and insert it into the compiled code at the appropriate point.
31 =head1 AUTHOR
33 Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
34 Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
36 =head1 SEE ALSO
38 perl(1).
40 =cut