Next Hash Hash Hash 14
        dictionary[key] = value        # store
        
        if dictionary[key]:            # fetch
          ...

        my %hash;
                
        $hash{$key} = $value;          # store
                
        if ($hash{$key}) { ... }       # fetch
        

Next 14