Swift: string interpolation?
Example:
let fruit = "apple"
Swift allows for easy string interpolation.
Solution:
let message = "I have an (fruit)."
Example: Solution:Swift: string interpolation?
Swift allows for easy string interpolation.
let fruit = "apple"
let message = "I have an (fruit)."