Two things:use strict; my %a; $a{"abc"} ++; print $a{"abc"};
use strict; my %a; check(); print "now set abc to undef\n"; $a{"abc"} = undef; check(); sub check { print "defined\n" if (defined($a{"abc"})); print "exists\n" if (exists($a{"abc"})); }
In reply to Re: database unclarity when finding 'unitinitaliazed' everywhere
by pg
in thread database unclarity when finding 'unitinitaliazed' everywhere
by sulfericacid
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |