Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Deepcopy/Raku/deepcopy-1.raku
Normal file
6
Task/Deepcopy/Raku/deepcopy-1.raku
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
my %x = foo => 0, bar => [0, 1];
|
||||
my %y = %x.deepmap(*.clone);
|
||||
|
||||
%x<bar>[1]++;
|
||||
say %x;
|
||||
say %y;
|
||||
6
Task/Deepcopy/Raku/deepcopy-2.raku
Normal file
6
Task/Deepcopy/Raku/deepcopy-2.raku
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
my %x = foo => 0, bar => [0, 1];
|
||||
my %y = %x.raku.EVAL;
|
||||
|
||||
%x<bar>[1]++;
|
||||
say %x;
|
||||
say %y;
|
||||
Loading…
Add table
Add a link
Reference in a new issue