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

5 lines
71 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var s = "Hello, "
var t = s + "world!"
System.print(s)
System.print(t)