I need to concatenate a String and Int as below:
String
Int
let myVariable: Int = 8 return \"first \" + myVariable
But it do
If you want to put a number inside a string, you can just use String Interpolation:
return "first \(myVariable)"