swift variable in a string

Swift
var myVariable = "this is a mutable string"
let myConstant = "this cannot be changed"// To create a variable type 'var' 'varName' = '"String" or Int'
var wallet = 100
var name = Joelet x = 10
let string = "x equals \(x) and you can also put expressions here \(5*2)"

Source

Also in Swift: