Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: How to get two array in subroutine

by andreas1234567 (Vicar)
on Feb 09, 2011 at 13:20 UTC ( [id://887191]=note: print w/replies, xml ) Need Help??


in reply to How to get two array in subroutine

You need to use references. See example here:
(@listc, @listd) = simplesort(\@lista, \@listb); sub simplesort { my ($listaref, $listbref ) = @_; # De-reference the array list my (@lista) = @$listaref; my (@listb) = @$listbref; # Now you can play with both arrays. }
--
No matter how great and destructive your problems may seem now, remember, you've probably only seen the tip of them. [1]

Replies are listed 'Best First'.
Re^2: How to get two array in subroutine
by Anonymous Monk on Feb 09, 2011 at 13:26 UTC
    I mentioned without references.
      Just use references. Oh, and tell the interviewer its a stupid question.

      Thanks Sir.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://887191]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-25 16:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found