Help for this page

Select Code to Download


  1. or download this
    $ perl -MDevel::Peek -e'
       my @a = qw( a b c ); Dump(\@a,1);
    ...
        MAX = -1               <---- 0 slots
        ARYLEN = 0x0
        FLAGS = (REAL)
    
  2. or download this
    my @lines;
    $#lines = 12_000_000;
    $lines[$.-1] = $_ while <>;
    $#lines = $.-1;