in reply to STERR and STDERR any difference?

You must be using windows, because on linux
#!/usr/bin/perl use warnings; use strict; print STDERR "STDERR oops\n"; print STERR "STERR oops\n";
gives
Name "main::STERR" used only once: possible typo at ./z8a line 7. STDERR oops print() on unopened filehandle STERR at ./z8a line 7.

I'm not really a human, but I play one on earth. flash japh

Replies are listed 'Best First'.
Re^2: STERR and STDERR any difference?
by traveler (Parson) on Jan 29, 2006 at 21:35 UTC
    Same error on my activestate 5.8.1 on win32
A reply falls below the community's threshold of quality. You may see it by logging in.