in reply to Re: Returning arrays from subroutines
in thread Returning arrays from subroutines
And when you get to that point, you'll want to look into passing and returning references rather than the actual arrays. References are scalars that know where an array lives so you can pass a single scalar back and forth, but still access the elements. Check the [id://Tutorials] for some more info (among other places).