Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    __END__
    { tree => { apple => 6 } }
    { tree => { apple => 6 } }
    
  2. or download this
    use strict;
    use warnings;
    ...
    __END__
    { tree => [4, { apple => [6] }] }
    { tree => [4, { apple => [6, { fuju => 4, red => 9 }] }] }
    
  3. or download this
    for my $key (keys %hash) {
        my ($root_value, $subtree) = @{$hash{$key}};
    ...
    tree  apple  6
    tree  apple  fuju  4
    tree  apple  red  9