RosettaCodeData/Task/Literals-String/Swift/literals-string.swift
2016-12-05 23:44:36 +01:00

7 lines
266 B
Swift

let you = "You"
let str1 = "\(you) can insert variables into strings."
let str2 = "Swift also supports unicode in strings ı∫ƒ∂ß´™¡à"
let str3 = "Swift also supports control characters \n\tLike this"
let str4 = "'" // '
let str5 = "\"" // "
println(str3)