Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Data::Dumper;
    ...
    $object->{a}->{var2} = $dummy;
    
    print Dumper($object);
    
  2. or download this
    $VAR1 = bless( {
                     'a' => bless( {
    ...
                                     'var1' => $VAR1->{'b'}{'var1'}
                                   }, 'C' )
                   }, 'MyMain' );