Can one use (escaped) double quotes in a string interpolation in Swift?
let s = "\(n) \(capitalized ? "H" : "h")ours"
produces "Unexpected '"' character in string interpolation
(which is in line with a NOTE in the documentation), but I've also had no success with several attempts at escaping the inner double quotes so far.
So can one use (escaped) double quotes in string interpolations and if so how?