Help for this page

Select Code to Download


  1. or download this
        @a = (0) x 143;    # 143 zeroes
    
  2. or download this
        @a = (0) x @a;     # every element set to zero
    
  3. or download this
        undef @a;
    
  4. or download this
        undef @a;
        $z = $a[3] + 12;
        print $z;