Swift: string interpolation?

Example:

let fruit = "apple"
Swift allows for easy string interpolation.

Solution:

let message = "I have an (fruit)."

Beginner's Guide to Swift