http://qs321.pair.com?node_id=1212907


in reply to Re: Curious about Perl's strengths in 2018
in thread Curious about Perl's strengths in 2018

I've seen what can be done with the inline modules even in Perl 5. It gives me something to think about.

  • Comment on Re^2: Curious about Perl's strengths in 2018

Replies are listed 'Best First'.
Re^3: Curious about Perl's strengths in 2018
by syphilis (Archbishop) on Apr 15, 2018 at 09:27 UTC
    I've seen what can be done with the inline modules even in Perl 5

    XS and Inline::C (which is essentially the same) are things that I find very attractive about perl 5, as accessing C routines by writing perl programs is far more appealing than accessing C routines by writing C programs.
    Of course, other languages also provide interfaces to C but I don't know how they compare with perl's C interface as I've not yet felt the need to investigate the alternatives.

    Cheers,
    Rob

      That I'm aware of, there's Cython and there's also a Scheme dialect called Chicken that compiles to C.