RosettaCodeData/Task/Generic-swap/Logo/generic-swap.logo
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

10 lines
191 B
Text

to swap :s1 :s2
localmake "t thing :s1
make :s1 thing :s2
make :s2 :t
end
make "a 4
make "b "dog
swap "a "b ; pass the names of the variables to swap
show list :a :b ; [dog 4]