I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2011-03-29 01:21:26.897511-07 by sisyphus in response to 13280
Re: Not table to run C program in perl
This looks like an older version of Inline.
Does Inline-0.48 build, test and install ok for you ?

Also it would be better if you could subscribe to the Inline mailing list, and follow this up on that forum.
See http://lists.perl.org/list/inline.html for details regarding subscription.

This works ok for me:
package my; use strict; use warnings; use Inline C => <<'END_C'; void greet() { printf("Hello, world!"); } END_C greet;


Cheers,
Rob
Direct Responses: 13283 | Write a response