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