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


in reply to Re^3: I want you to convince me to learn Perl
in thread I want you to convince me to learn Perl

well, one of my first languages was Pascal, where you have to tell your subroutines whether they get their parameters by value or by reference. That possybly had made me more aware of this one.
Which means, when I use sort, I have to pause thinking about whether it modifies in-place (Python) or returns a sorted copy (Perl)...

Update:

copied by reference
is just plain wrong terminology. References are used to avoid copying.
Don't even think in such terms! That impedes yourself, and then no wonder you're puzzled... regardless in which language you program.