I'm new in Eclipse version Helios. Perl script:
use strict;
warn "Not work\n";
print STDERR "Yes it work"
In the console view, I can't see the warn output. How can I fix it?
|
feedback
|
|
This works fine for me. Instead of using Eclipse, try just putting this into a text file, then running it from the command prompt (because I'm assuming Windows...?)
Personally, I don't think Eclipse is very good for Perl (or scripting in general), I would just stick to a text editor. | |||
feedback
|
|
I assume it is not just warnings, but all output to STDERR. In Window->Preferences->Run/Debug->Console. Tick the option "Show when program writes to standard error" | |||
|
feedback
|