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 trialflaviomalesani
2,788 PointsSwift 2.0 Basics. the Greeting Challenge task 2 of 2 appears to have a problem.
Swift 2.0 Basics.
let name = "Flavio." let greeting = "Hi there, (name)" let finalGreeting = "(greeting) How are you?"
// Enter your code below
Swift 2.0 Basics.
the Greeting Challenge task 2 of 2 appears to have a problem.
let name = "Flavio."
let greeting = "Hi there, \(name)"
let finalGreeting = "\(greeting)How are you?"
2 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHey Flavio,
Task 2 of this challenge wants you to use Concatenation
to form the string, but you are using string interpolation
, which is why you are getting the Bummer!
You can review how to form a concatenated string in the first video starting at the 4:30 mark.
If you still need assistance, feel free to post a reply.
Cameron James
PHP Development Techdegree Student 4,535 Pointslet name = "John" let greeting = "Hi There, (name)" let finalGreeting = greeting + ". How are you?"
here is what it should look like. Hope this helps