Help for this page

Select Code to Download


  1. or download this
    @array =  (Bannana, Fruit, Corn, Vegetable);
    %hash  =  @array;# (Bannana => Fruit, Corn => Vegetable);
    
  2. or download this
    $food = \@array;
    print $$food{Corn}; # woops!