I am new to Swift and I am training with examples
Here there is such a tulle
let oneMore = (message : "message here", errorMessage : nil) I get this error
If I write like this
let aa : String? = nil let oneMore = (message : "message here", errorMessage : aa) then everything is fine
How to assign nil to the dump right away?

nilinString?? - VladD