Help for this page

Select Code to Download


  1. or download this
    #include "EXTERN.h"
    #include "perl.h"
    ...
                }
                mpz_clear(big);
            }
    
  2. or download this
    package Math::Tobase;
    
    ...
    
    1;
    __END__
    
  3. or download this
    
    =head1 NAME
    ...
    
    =cut
    
  4. or download this
    use ExtUtils::MakeMaker;
    
    ...
        VERSION_FROM => "lib/Math/Tobase.pm",
        LIBS => ["-lgmp"],
    );
    
  5. or download this
    perl Makefile.PL && make
    
  6. or download this
    perl -I./lib -Iblib/arch -we 'use Math::Tobase; print tobase(13, 54), 
    +"\n";'