in reply to Re^2: checking bareword-filehandle
in thread checking bareword-filehandle
Produces a warning "print() on closed filehandle HUBBA at t line 6."use strict; use warnings; no warnings qw(unopened); open HUBBA, "/hubba"; print HUBBA "hubba";
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 |