Help for this page

Select Code to Download


  1. or download this
    my $b = $a; # copy the reference, to pass a single object around
    my $c = $a->copy; # create a copy, to have a new object like the old o
    +ne
    
  2. or download this
    sub copy {
      my $self = shift;
      bless { %$self }, ref $self;
    }