in reply to array testing
will print only:my @one = ('A', 'B', 'C'); my @two = (); if (defined(@one)) { print "Array one is defined.\n"; } if (defined(@two)) { print "Array two is defined.\n"; }
Array one is defined.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: array testing
by Roy Johnson (Monsignor) on Oct 30, 2003 at 17:06 UTC | |
|
Re: Re: array testing
by chromatic (Archbishop) on Oct 30, 2003 at 17:10 UTC | |
|
Re: Re: array testing
by bart (Canon) on Oct 31, 2003 at 02:21 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |