http://www.perlmonks.org?node_id=439954


in reply to Re: passing arrays to subroutines
in thread passing arrays to subroutines

There are two ways of passing data to a subroutine:

- call by value
- call by reference

Actually, there's also:

- call by name
- call by copy-restore
- call by result
- call by push value
- call by need
- call by macro expansion

See Parameter (Computer Science) on Wikipedia.

Most (all?) of these can be done in Perl. In Perl, it really comes down to two things:

1) Parameters are passed as a list of scalars.
2) The caller and the callee have to agree on what those scalars mean.

-QM
--
Quantum Mechanics: The dreams stuff is made of