in reply to database unclarity when finding 'unitinitaliazed' everywhere
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"})); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: database unclarity when finding 'unitinitaliazed' everywhere
by sulfericacid (Deacon) on Mar 17, 2003 at 07:30 UTC |