- or download this
# devel.pl
use Devel::Peek;
...
Dump $a;
my $b = \$a;
Dump $a; # note the reference count for $a
- or download this
c:>perl -d devel.pl
...
SV = NULL(0x0) at 0x1829ce0
REFCNT = 2 ###<----- correct count
FLAGS = (PADBUSY,PADMY)
- or download this
c:>perl -de 1
...
SV = NULL(0x0) at 0x1aeccfc
REFCNT = 1 ###<----- wrong reference count
FLAGS = ()
- or download this
c:>perl -de 1
...
SV = NULL(0x0) at 0x1aecc18
REFCNT = 2 ###<--------correct here
FLAGS = ()