Help for this page

Select Code to Download


  1. or download this
    # use Inline C => '<<HERE';
    # becomes
    use Module::Inline::C <<'HERE';
    ...
    HERE
    
  2. or download this
    # our $VERSION = '0.01';
    # becomes
    our $VERSION = '0.01';
    BEGIN {$VERSION = '0.01'};
    
  3. or download this
    use ExtUtils::MakeMaker;
    
    ...
            PREOP => "perl -MModule::Inline::C::MM=\$(DISTNAME)-\$(VERSION
    +) -c $module_file",
        },
    );
    
  4. or download this
    perl Makefile.PL
    make # compiles XS => so/dll into blib/
    make test # doesn't use Inline!
    make install # no more Inline for this module, ever.