- or download this
my $i = 30000;
my %h = (new => {});
my $r = \%h;
...
$r->{new} = {};
}
print "end\n";
- or download this
...29998 29999 30000 end
Segmentation fault (core dumped)
- or download this
my $i = 30000;
my %h = (new => {});
my $r = \%h;
...
}
undef %h;
print "end\n";