RosettaCodeData/Task/String-append/Wren/string-append.wren

4 lines
51 B
Plaintext

var s = "Hello, "
s = s + "world!"
System.print(s)