Help for this page

Select Code to Download


  1. or download this
    my %hash = (
        TreeNodes => []
    ...
    
    use Data::Dumper;
    print Dumper \%hash;
    
  2. or download this
    my %hash;
    push @{ $hash{TreeNodes} }, 1, 2;
    
    use Data::Dumper;
    print Dumper \%hash;