RosettaCodeData/Task/Arrays/Transd/arrays-2.transd
2023-07-01 13:44:08 -04:00

7 lines
134 B
Text

(with v [1,2,3]
(textout (get v 1)) // <= 2
(erase v 1)
(textout v) // <= [1, 3]
(append v 7)
(textout v) // <= [1, 3, 7]
)