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 trialBaltazar Pazos
407 PointsHaving quite an issue with this quiz. I have gone over question one and the previous video many times.
Not sure if I am reading the question wrong or my code is incorrect. I seem to be getting the correct result in Xcode but for some reason the quiz says it is incorrect.
// Enter your code below
let name = "Baltazar"
let greeting = "Hi there"
let interpolatedGreeting = "\(greeting), \(name)"
1 Answer
andren
28,558 PointsThe challenge wants you to store the interpolated greeting within the greeting
constant, it does not ask you to create a separate constant to hold it like you are doing.
Like this:
let name = "Baltazar"
let greeting = "Hi there, \(name)"
Baltazar Pazos
407 PointsBaltazar Pazos
407 PointsThank you!