Help for this page

Select Code to Download


  1. or download this
    print map "$_ = $ref->{$_}\n", sort keys %{$ref};
  2. or download this
    my %Recipes = (
    "YumYumStuff" => {
    ...
                $ref = $Recipes{$recipe}{ingredients};
                print map "$_ = $ref->{$_}\n",  sort keys %{$ref};
            }