Is it possible to use a String/Character literal within string interpolation in Swift?
The language reference says:
The expression you write insid
I hope it's:
let strfunc = repeat("H",20) as string println( "Output: \(strfunc)" );