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 trialThomas Dullard
1,217 PointsHi, I'm new to task challenges. My Xcode seems to be fine, but I keep getting the following bummer message.
// Enter your code below
let name = "Thomas"
let greeting = "Hi there,"
let interpolatedGreeting = "\(greeting) \(name)"
3 Answers
Victor Mercier
14,667 PointsHere is my code :
let name = "Victor Mercier"
//greeting declaration using interpolation
let greeting = "Hi there, \(name)"
//finalGreeting declaration using concatenation
let finalGreeting = greeting + "How are you?"
Victor Mercier
14,667 PointsJust make sure you name the interpolatedGreeting finalGreeting!
Thomas Dullard
1,217 PointsStill no luck Victor Mercier .... Any other workarounds?
let name = "Thomas."
let greeting = "Hi there,"
let finalGreeting = "\(name) \(greeting)"
Thomas Dullard
1,217 PointsThanks Victor Mercier.
Very much appreciated! I'm sorry if that was the most basic question you have ever had to answer, but it was very much appreciated!
Thomas Dullard
1,217 PointsThomas Dullard
1,217 PointsBummer: Make sure the value you are assigning to greeting is an interpolated string