Help for this page

Select Code to Download


  1. or download this
    >perl -E"$a[$_] = {a=>1,b=>3.2,c=>'a short string'} for 1..10e6; <>"
    
  2. or download this
    >perl -E"$a[$_] = [1,3.2,'a short string'] for 1..10e6; <>"
    
  3. or download this
    >perl -E" $a[$_] = qq[1,3.2,'a short string'] for 1..10e6; <>"
    >perl -E" $a[$_] = pack 'VdA8', 1,3.2,'a short string' for 1..10e6; <>
    +"