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

7 lines
84 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
(let s "hello")
(print (+ s " world!"))
(let w " there")
(let v (+ s w))
(print v)