Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
24
Task/Deepcopy/Arturo/deepcopy.arturo
Normal file
24
Task/Deepcopy/Arturo/deepcopy.arturo
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
x: #[
|
||||
name: "John"
|
||||
surname: "Doe"
|
||||
age: 34
|
||||
hobbies: [
|
||||
"Cycling",
|
||||
"History",
|
||||
"Programming",
|
||||
"Languages",
|
||||
"Psychology",
|
||||
"Buddhism"
|
||||
]
|
||||
sayHello: function [][
|
||||
print "Hello there!"
|
||||
]
|
||||
]
|
||||
|
||||
print ["Name of first person:" x\name]
|
||||
|
||||
y: new x
|
||||
y\name: "Jane"
|
||||
|
||||
print ["Name of first person:" x\name]
|
||||
print ["Name of second person:" y\name]
|
||||
Loading…
Add table
Add a link
Reference in a new issue