I\'ve been playing around with Swift, and just came across an issue. I have the following Dictionary in:
var locations:Dictionary
You can use string concatenation instead of interpolation:
println("Some words " + dict["key"]! + " some more words.")
Just mind the spaces around the + signs.
UPDATE:
Another thing you can do is to use string format specifiers the same way how it was done back in the objective-c days:
println( String(format: "Some words %@ some more words", dict["1"]!) )