Skip to main content

String interpolation

private var name = "David"

let hello = "Hello, \(name)!"
  • Swift는 "()" 안에 변수값을 할당하여, String 형태로 표현할수 있으며, 이를 Interpolation이라 한다.