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 trialJose Larios
Courses Plus Student 1,940 PointsWhen I enter my code into playground it work, but when I enter it into the exercise window it doesn't...Please Help
What's interesting is that in the previous exercise my code was getting rejected because I had a capital "G" versus the lowercase "g" in my interpolationGreeting constant. Don't know if thats the issue in this case or I did something else wrong.
// Enter your code below
let name = "Jose."
let greeting = "Hi there,"
let interpolatedgreeting = "\(greeting) \(name)"
let finalGreeting = interpolatedgreeting + " " + "How are you?"
2 Answers
jcorum
71,830 PointsClose, but you were only supposed to interpolate name in the 2nd line, and you were supposed to concatenate in the 3rd:
let name = "Jose" //no period, just your name
let greeting = "Hi there, \(name)." //interpolation, here's where you add the period
let finalGreeting = greeting + " How are you?" //concatenation
Jose Larios
Courses Plus Student 1,940 PointsThank you for the clarification.