4 lines
54 B
Swift
4 lines
54 B
Swift
|
|
var str = ", World"
|
||
|
|
str = "Hello \(str)"
|
||
|
|
println(str)
|