AW: returning hashes, and arrays

2004-03-17 Thread B. Fongo
That should work provided you're returning only on list. It is much better to use reference when passing or retrieving more than one value. For instance: Retrieve the values from a sub as refereces. ($xRef, $yRef, $zRef) = example(); # my @x = @$x; my @y = @$y; my $z = $$z; sub example {

Re: AW: returning hashes, and arrays

2004-03-17 Thread Stuart White
It helps in that it seems to confirm that I was going about it the right way. It doesn't in that I can't get it to work for me. I'll go read some more documentation. By the way, what does AW: mean? --- B. Fongo [EMAIL PROTECTED] wrote: That should work provided you're returning only on