Help for this page

Select Code to Download


  1. or download this
    my %hash = ('a' => undef, 'b' => undef, 'c' => undef, 'd' => undef);
    
    ...
    {
      # yadda yadda
    }
    
  2. or download this
    my %hash;
    @hash{'a', 'b', 'c', 'd'} = ();