I need to concatenate a String and Int as below:
String
Int
let myVariable: Int = 8 return \"first \" + myVariable
But it do
You have TWO options;
return "first " + String(myVariable)
or
return "first \(myVariable)"