More Reference Counting
my @names = qw(Foo Bar Baz); # cnt = 1
my $names_ref = \@names; # cnt = 2
my $other_ref = \@names; # cnt = 3
my $x_ref = $names_ref; # cnt = 4
$other_ref = undef; # cnt = 3
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
my @names = qw(Foo Bar Baz); # cnt = 1
my $names_ref = \@names; # cnt = 2
my $other_ref = \@names; # cnt = 3
my $x_ref = $names_ref; # cnt = 4
$other_ref = undef; # cnt = 3