Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

William Richards
Courses Plus Student 303 PointsI'm a little bit confused as to how to complete step two using String Interpolation
Any help on understanding this better would be greatly appreciated.
let firstValue: Int = 20
let secondValue: Int = 40
let product = "firstValue * secondValue
let output
1 Answer

Michael Hulet
47,842 PointsString interpolation allows you to perform an expression and have its result pasted right into the string in the spot you want it. It's done with the \()
syntax inside the string itself. For example:
let num = "\(2 + 2)"
//num is now equal to "4"