Hello,

sub myfunc {
  my @x=(1,2,3);
  return \@x;
}

# or,

sub myfunc {
  my @x=(1,2,3);
  return [@x];
}

which one is the better way to return the list content? And if the
method is an instance method?

Thanks.

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to