Help for this page

Select Code to Download


  1. or download this
        # broomduster
        my $h = $a{$state}{$city};
        $h->{'Color'} = $color;
    
  2. or download this
        # ikegami
        my $r = \( $a{$state}->{$city} );
        ${ $r }->{Color} = $color;
    
  3. or download this
    $a{'WI'}{'GreenBay'}{'Color'} = 'Black';
    
  4. or download this
    # broomduster
    $VAR1 = {
              'WI' => {}
            };
    
  5. or download this
    # ikegami
    $VAR1 = {
    ...
                                      }
                      }
            };
    
  6. or download this
        my $h = $a{$state}{$city} ||= {};
        $h->{'Color'} = $color;