I need to concatenate a String and Int as below:
String
Int
let myVariable: Int = 8 return \"first \" + myVariable
But it do
To add an Int to a String you can do:
return "first \(myVariable)"