RosettaCodeData/Task/String-concatenation/Ursa/string-concatenation.ursa

10 lines
164 B
Plaintext

decl string s1 s2
# make s1 contain "hello "
set s1 "hello "
# set s2 to contain s1 and "world"
set s2 (+ s1 "world")
# outputs "hello world"
out s2 endl console