Help for this page

Select Code to Download


  1. or download this
      my @list;
    
      # push an anonymous hash into @list 
      push @list, { apples => 'green', peaches => 'cream' };
    
  2. or download this
      $list[0]->{pears} = 'expensive';