Help for this page

Select Code to Download


  1. or download this
    $our_hash = {
        'this' => 'that',
        'foo' => ['bar', 'and', 'something', 'else']
    };
    
  2. or download this
    $$our_hash{'somekey'} = {
        'foo' => $$our_hash{'foo'}
    };
    
  3. or download this
    $our_hash = {
        'this' => 'that',
        'foo' => [],
    ...
            'foo' => ['bar', 'and', 'something', 'else']
        }
    };