Help for this page

Select Code to Download


  1. or download this
    #include <EXTERN.h>
    #include <perl.h>
    
    ...
      perl_destruct(my_perl);
      perl_free(my_perl);
    }
    
  2. or download this
    use DBI;
    
    sub expo {
        my ($a, $b) = @_;
        return $a ** $b;
    }