Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialabdulmohsen abdullah
Courses Plus Student 352 PointsI'm having a problem with the format
the backslash doesn't appear in the comments even though it appears when i type it ???
// Enter your code below
let firstValue = 2
let secondValue = 4
let product = 2 * 4
let output = " \(firstValue) \(secondValue) \(product) "
1 Answer
Kevin Tanner
3,385 PointsThe \ isn't supposed to appear in the comments because the way you are using it is the syntax to pull those values from the variables