The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Module::Compile::Simple - Even Simpler Perl Module Compilation

SYNOPSIS

    package Foo;
    use Module::Compile::Simple;
    transform($source);

In Bar.pm

    package Bar;

    use Foo;
    ...
    no Foo

DESCRIPTION

Module::Compile::Simple makes it easier to write Module::Compile modules, doing compile-time source filtering.

After using Module::Compile::Simple, apply transformation on $source.

TODO

Make this work:

    use Module::Compile::Simple '$source';

SEE ALSO

Module::Compile

AUTHORS

Chia-liang Kao <clkao@clkao.org>

COPYRIGHT

Copyright (c) 2006. Chia-liang Kao. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html

1 POD Error

The following errors were encountered while parsing the POD:

Around line 83:

=cut found outside a pod block. Skipping to next block.