in reply to Re: cpan module installation in strawberry perl
in thread cpan module installation in strawberry perl
If you attempt to compile that program on Windows, you get:#include <windows.h> int main(void) { int OUT = 7; return 0; }
I think that's a pretty good indication that OUT is a special symbol on Windows.try.c: In function 'main': try.c:4:10: error: expected identifier or '(' before '=' token int OUT = 7; ^
|
|---|