Help for this page

Select Code to Download


  1. or download this
    sub copy_hash {
        my $hr = shift // return {};
    ...
        @$copy{keys %$hr} = value %$hr;
        $copy;
    }
    
  2. or download this
    sub copy_hash {{%{$_[0]//{}}}}
    
  3. or download this
    my %copy = %+;