Help for this page

Select Code to Download


  1. or download this
    my %hash = (1, 2, 3, 4, 5, 6);
    
  2. or download this
    my %hash = (1=>2, 3=>4, 5=>6);
    
  3. or download this
    my %quotes_hash = ("bob","carol", "ted","alice");
    # vs.
    my %noquotes_hash = (bob=>"carol", ted=>"alice");