in reply to Re: param = 0, not NULL
in thread param = 0, not NULL
#!/usr/bin/perl -w my %hash = (); %hash or print "empty hash is false\n"; my $hash = {}; print "empty hash ref is true\n" if $hash ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: param = 0, not NULL
by davorg (Chancellor) on Mar 29, 2007 at 13:26 UTC |