Help for this page

Select Code to Download


  1. or download this
    my %hash;
    $hash{"foo"}++;
    
  2. or download this
    my %hash;
    die "This is impossible!" if exists $hash{"foo"}{"bar"}{"baz"};
    # However:
    use Data::Dumper;
    print Dumper \%hash;