Help for this page

Select Code to Download


  1. or download this
    [requirements]
    array=bar,baz
    hash=bar,1,baz,2
    
  2. or download this
    my $ary = $config{'requirements.array'};
    my $hary = $config{'requirements.hash'};
    ...
    for my $key (keys %hash) {
        print "$key => $hash{$key}\n";
    }
    
  3. or download this
    ARRAY:
    bar
    ...
    HASH:
    bar => 1
    baz => 2