in reply to Re: Calling a C++ subroutine from Perl
in thread Calling a C++ subroutine from Perl

Internally, I believe it translates stuff to XS

Yep - it writes the XS file, compiles it and then executes the script.

Cheers,
Rob
  • Comment on Re^2: Calling a C++ subroutine from Perl

Replies are listed 'Best First'.
Re^3: Calling a C++ subroutine from Perl
by ibm1620 (Hermit) on Mar 19, 2019 at 15:10 UTC
    And caches the compilation so you don't have to recompile on every invocation of the script, as I read the doc. Pretty cool!