Help for this page

Select Code to Download


  1. or download this
    {{'a' => 1},{'b' => 2},{'c' => 3}};
    
  2. or download this
    {'a' => 1,'b' => 2,'c' => 3};
    
  3. or download this
    my $items = [{'a' => 1}, {'b' => 2}, {'c' => 3}];
    my $values = {map { %$_ } @$items};