diff options
| author | Drahflow <drahflow@gmx.de> | 2012-12-22 18:16:58 +0100 |
|---|---|---|
| committer | Drahflow <drahflow@gmx.de> | 2012-12-22 18:16:58 +0100 |
| commit | affeeb43b4ffc136a67efd11ff712b7f142266be (patch) | |
| tree | 205115568365f6e056d511e0e885f5d07913910d /ACME-Bare-Metal/lib/ACME | |
| parent | f20e50a4e3ac3aeeac84358a68c253358f213667 (diff) | |
ACME::Bare::Metal Perl x86 code executor
Diffstat (limited to 'ACME-Bare-Metal/lib/ACME')
| -rw-r--r-- | ACME-Bare-Metal/lib/ACME/Bare/Metal.pm | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/ACME-Bare-Metal/lib/ACME/Bare/Metal.pm b/ACME-Bare-Metal/lib/ACME/Bare/Metal.pm new file mode 100644 index 0000000..31683b8 --- /dev/null +++ b/ACME-Bare-Metal/lib/ACME/Bare/Metal.pm @@ -0,0 +1,86 @@ +package ACME::Bare::Metal; + +use 5.014002; +use strict; +use warnings; + +require Exporter; + +our @ISA = qw(Exporter); + +# Items to export into callers namespace by default. Note: do not export +# names by default without a very good reason. Use EXPORT_OK instead. +# Do not simply export all your public functions/methods/constants. + +# This allows declaration use ACME::Bare::Metal ':all'; +# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK +# will save memory. +our %EXPORT_TAGS = ( 'all' => [ qw( + +) ] ); + +our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); + +our @EXPORT = qw( + +); + +our $VERSION = '0.01'; + +require XSLoader; +XSLoader::load('ACME::Bare::Metal', $VERSION); + +# Preloaded methods go here. + +1; +__END__ +# Below is stub documentation for your module. You'd better edit it! + +=head1 NAME + +ACME::Bare::Metal - Perl extension for blah blah blah + +=head1 SYNOPSIS + + use ACME::Bare::Metal; + blah blah blah + +=head1 DESCRIPTION + +Stub documentation for ACME::Bare::Metal, created by h2xs. It looks like the +author of the extension was negligent enough to leave the stub +unedited. + +Blah blah blah. + +=head2 EXPORT + +None by default. + + + +=head1 SEE ALSO + +Mention other useful documentation such as the documentation of +related modules or operating system documentation (such as man pages +in UNIX), or any relevant external documentation such as RFCs or +standards. + +If you have a mailing list set up for your module, mention it here. + +If you have a web site set up for your module, mention it here. + +=head1 AUTHOR + +A. U. Thor, E<lt>drahflow@E<gt> + +=head1 COPYRIGHT AND LICENSE + +Copyright (C) 2012 by A. U. Thor + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself, either Perl version 5.14.2 or, +at your option, any later version of Perl 5 you may have available. + + +=cut |
