in reply to Re: Good programming practice
in thread Good programming practice
The following script will complain about tigers, but not lions...no warnings "once";
The full list of default categories can be found at perllexwarn.#!/usr/bin/perl -wT { no warnings "once"; $lions = 123; } $tigers = 456; print "Hello world\n";
-Blake
|
|---|