in reply to Re^2: checking bareword-filehandle
in thread checking bareword-filehandle

seems not to work in my old Perl (5.8.8):
use strict; use warnings; no warnings qw(unopened); open HUBBA, "/hubba"; print HUBBA "hubba";
Produces a warning "print() on closed filehandle HUBBA at t line 6."

Guess I have to disable all warnings...

Replies are listed 'Best First'.
Re^4: checking bareword-filehandle
by moritz (Cardinal) on Aug 06, 2012 at 14:20 UTC