Help for this page

Select Code to Download


  1. or download this
    # create object of My::Class
    my $object = bless { some => 'thing' }, "My::Class";
    ...
    # to bless the copy too, (and mind nested objects! -
    # I ignored those here)
    my $clone = bless { %$object }, "My::Package"