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


in reply to Push function

You can use this to achieve it.
use Data::Dumper; my @arr = ([11,22,[[]]],[333,444,[]],[6666,7777,[]]); push(@{$arr[0][2][0]},3); print Dumper @arr;

Replies are listed 'Best First'.
Re^2: Push function
by boom (Scribe) on Apr 06, 2009 at 05:50 UTC
    Hi manoj_speed,

    Is it possible to push a value into anonymous array without dereference it

      No.

      "How do I make a phone call to England?" - "Here you go, you take the phone and dial..." - "can I do that without a phone?".