Help for this page

Select Code to Download


  1. or download this
    {
        my $foo = 'X' x 100000000;       <-- a lexical var $foo
    ...
    undef $foo;                          <-- the package var $foo was
    my $foo = "";                            already undef so does nothing
    getc;
    
  2. or download this
    {
        my $foo = 'X' x 100000000;
    ...
        undef $foo;
    }
    getc;