Help for this page

Select Code to Download


  1. or download this
    bless { hash => {} }, $class;
    ...
    $object->{hash}->{key_inside_that};
    
  2. or download this
    $object->{hash}{key_inside_that},
    $$object{hash}{key_inside_that},
    ${${$object}{hash}}{key_inside_that}
    
  3. or download this
    bless \{ hash => \{} }, $class;
    ...
    ${$$object->{hash}}->{key_inside_that};
    ${${${$object}}{hash}}{key_inside_that};
    # etcetera...