Help for this page

Select Code to Download


  1. or download this
    my $foo = { foo => { bar => 'baz' } };
    
    foreach (keys %foo)
    ...
    
            return;
    }
    
  2. or download this
    my $foo = [
            { foo => { bar => 'baz' } },
    ];
    ...
    
            return;
    }
    
  3. or download this
    my $foo = [
            { foo => 'bar' },
    ];
    ...
    
            return;
    }