I want to concatenate a string, and I do this:
var text: String! .... text = "hello" text += "! How r you?" But I got the following error:
cannot convert value of type 'String!' to expected argument type 'inout String' text += "!" ^~~~
How can I fix it? Thanks
var text: String!tovar text = ""