Next Hash Hash Hash 13
        dictionary[key] = value        # store
        
        if dictionary[key]:            # fetch
          ...
        my %hash;
                
        $hash{$key} = $value;          # store
                
        if ($hash{$key}) { ... }       # fetch
        

Next 13