RosettaCodeData/Task/String-concatenation/ArkScript/string-concatenation.ark

7 lines
84 B
Plaintext

(let s "hello")
(print (+ s " world!"))
(let w " there")
(let v (+ s w))
(print v)