Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
And I'm expecting it to print;thing(@\FooBar); for (@{$FooBar[0]}) { print "$_\n"; } for (@{$FooBar[1]}) { print "$_\n"; } sub thing() { ($REF_array)=@_; @Array=@{$REF_array}; @Array[0]=([some,values]); @Array[1]=([some,more,values]); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: I've read perlref
by Corion (Patriarch) on Mar 11, 2004 at 11:26 UTC | |
|
Re: I've read perlref
by matija (Priest) on Mar 11, 2004 at 11:46 UTC | |
by Fletch (Bishop) on Mar 11, 2004 at 13:35 UTC | |
|
Re: I've read perlref
by maa (Pilgrim) on Mar 11, 2004 at 11:27 UTC | |
by Abigail-II (Bishop) on Mar 11, 2004 at 11:34 UTC | |
by Anonymous Monk on Mar 11, 2004 at 11:46 UTC | |
by Corion (Patriarch) on Mar 11, 2004 at 12:04 UTC | |
|
Re: I've read perlref
by Anonymous Monk on Mar 11, 2004 at 11:16 UTC | |
|
Re: I've read perlref
by eric256 (Parson) on Mar 11, 2004 at 16:36 UTC |