4 lines
76 B
Swift
4 lines
76 B
Swift
let s = "hello"
|
|
println(s + " literal")
|
|
let s1 = s + " literal"
|
|
println(s1)
|