RosettaCodeData/Task/String-concatenation/ArkScript/string-concatenation.ark
2025-08-11 18:05:26 -07:00

6 lines
84 B
Text

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