Help for this page

Select Code to Download


  1. or download this
        my %default = %default_values;  # shallow copy
        $default{ AUTHOR } =
    ...
        my $self = ref($class) ? bless( \%default, ref($class) )
                               : bless( \%default, $class );
    
  2. or download this
    my $self = bless deep_copy( \%default_values ), $class;