Help for this page
my @arr = (9) x 1000_000; my $code = sub { @arr }; undef $code; print(scalar(@arr), $/); # 1000000
my $code; { ... undef $code; # @arr freed print(scalar(@arr), $/); # error under strict.