RosettaCodeData/Task/String-prepend/Swift/string-prepend-1.swift

4 lines
51 B
Swift

var str = ", World"
str = "Hello" + str
print(str)