in reply to Trading compile time for faster runtime?

Was it attempted already?

Perhaps. It does sound like you might be interested in RPerl.


🦛

  • Comment on Re: Trading compile time for faster runtime?

Replies are listed 'Best First'.
Re^2: Trading compile time for faster runtime?
by melez (Sexton) on Apr 20, 2022 at 16:43 UTC

    Thanks, I know about RPerl's existence. AFAIK it is a subset of perl that compiles into C++ - so CPAN doesn't work. Surely got nice performance though

      A blunter point about RPerl: it's an agonising (see all the perl-critic stuff in the examples) and bad way to write non-dynamically-typed Perl. Use PDL, or write actual XS code.
      What performance does it produce for numerical processing, compared to PDL? I always wondered.