in reply to using undef on a array
is assigning a one element list to @a.... It's actually doing something like:@a = undef;
Which is a relatively common error.@a = (undef);
-Blake
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: using undef on a array
by Biker (Priest) on Oct 31, 2001 at 14:41 UTC |