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-28 10:55:42.090228-07 by surinder
Not table to run C program in perl
package my; use strict; use warnings; use Inline C => <<'END_C'; void greet() { printf("Hello, world! "); } END_C greet; ############################################## getting error message during execution C:\Capptool>.\Environment\Perl\bin\perl abc.pl defined(%hash) is deprecated at blib\lib\Inline.pm (autosplit into blib\lib\auto \Inline\check_config_file.al) line 667. (Maybe you should just omit the defined()?) Can't use an undefined value as an ARRAY reference at C:/Capptool/Environment/Pe rl/site/lib/Inline/C.pm line 358. BEGIN failed--compilation aborted at my.pm line 13. Compilation failed in require at abc.pl line 25. BEGIN failed--compilation aborted at abc.pl line 25.
Direct Responses: 13282 | Write a response