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 trialKurt Lyell
2,892 Pointsstring interpolation
there needs to be some type of hint. if the code is not exactly correct it wont let you proceed. I dont know exactly what they want here, ive tried to run 3 or 4 different ways and its not telling me exactly whats wrong. My code works just fine on xcode but not here.
Is this really worth $50 a month?
// Enter your code below
let firstValue: Int = 2
let secondValue: Int = 4
let product = firstValue * secondValue
let output = "The product of \(firstValue) times \(secondValue), is \(product)"
2 Answers
Tuan Do
3,495 PointsThe comma in the constant "output" is the culprit. These code challenges really need you to follow direction to a T. It might as well do a string compare from your code snippet result to the correct answer.
Kurt Lyell
2,892 PointsThanks a bunch Tuan Do. I appreciate the help.