in reply to How to dereference array of ref.s?
So essentially% perl -dee Loading DB routines from perl5db.pl version 1.49_05 Editor support available. Enter h or 'h h' for help, or 'man perldebug' for more help. main::(-e:1): e DB<1> $q='qwer' DB<2> @a=( \$q ) DB<3> x @a 0 SCALAR(0x1158960) -> 'qwer' DB<4> p ${$a[0]} qwer
See also References quick referenceprint ${ $scalar_ref };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to dereference array of ref.s?
by nikolay (Beadle) on May 20, 2018 at 15:02 UTC |