in reply to Pass by Value does not work

Hi,

The @xx was having elements as array references. In subroutine you changed @xx values but the values were references so that only your array values were affected.

Replies are listed 'Best First'.
Re^2: Pass by Value does not work
by Anonymous Monk on Feb 21, 2009 at 10:41 UTC
    Thanks all, I now understand it.