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?

link|improve this question
feedback

2 Answers

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...?)

C:\>perl test.pl

Personally, I don't think Eclipse is very good for Perl (or scripting in general), I would just stick to a text editor.

link|improve this answer
thank you, but i like IDE, when i work on me perl script. And yes in console all work correctly. – Alex SH May 2 '11 at 8:18
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"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.