in reply to Re: Subroutines and Passing data ...in thread Subroutines and Passing data ...
sub foo { return($scalar, $anotherscalar, @array) } my($s1, $s2, @a) = foo; [download]