Convertir INT en chaîne dans Swift

let x : Int = 45
var stringValue = "\(x)"
print(stringValue)
Competitive Programmer