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

7 lines
145 B
Text

(let (A 1 B 2)
(xchg 'A 'B)
(println A B) )
(let (Lst1 '(a b c) Lst2 '(d e f))
(xchg (cdr Lst1) (cdr Lst2))
(println Lst1 Lst2) )