Help for this page

Select Code to Download


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