- or download this
Warning. No Inline C functions bound to Perl
Check your C function definition(s) for Inline compatibility
- or download this
#!C:\Perl\bin\perl.exe -w
#Inline1.pl
...
printf( "%d - %s\n", argc, argv );
return;
}
- or download this
Usage: main::main(argc, argv) at c:\test\junk7.pl line 7.
- or download this
#!C:\Perl\bin\perl.exe -w
#Inline1.pl
...
printf( "%d - %s\n", argc, argv );
return;
}
- or download this
c:\test>junk7
3 - fred
- or download this
#!C:\Perl\bin\perl.exe -w
#Inline1.pl
...
}
return 0;
}
- or download this
c:\test>junk7 1 fred bill 3.2
1
fred
bill
3.2