Help for this page

Select Code to Download


  1. or download this
    $hash{'abacus'} = ([1,2,3,4,5]);
    $hash{'querty'} = ([6,7,8,9,10]);
    
  2. or download this
    print $hash{'abacus'}[0]; # Prints "1"
    print $hash{'qwerty'}[1]; # Prints "7"