in reply to How to return the two set of arrays to the main program at the same time ??

Try:
sub { my ( @a, @b ); #... fill in the arrays return \@a, \@b; }

Phil

  • Comment on Re: How to return the two set of arrays to the main program at the same time ??
  • Download Code