4 lines
51 B
Swift
4 lines
51 B
Swift
|
|
var str = ", World"
|
||
|
|
str = "Hello" + str
|
||
|
|
print(str)
|