in reply to Re: returning large arrays from functions
in thread returning large arrays from functions

> With a suitably chosen name for the sub, the latter looks less awkward:

populateThingArray( \my @c ); $c[ ... ];

as a side note, one can use the fat comma for syntactic sugar:

calcArrays( $par1, $par2 => \ my (@a,@b) );

Cheers Rolf

Update: extended code to return multiple Arrays.