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 trialGroshvin Grover
327 PointsCode Challenge Swift I can't figure this challenge
Help me. I believe this is correct as I tried it on Terminal and Xcode and they both came out correctly. Please give me a hand on this Code Challenge
// Enter your code below
let name = "Groshvin"
let greeting = "Hi there, \(name)"
let finalGreeting = "\(greeting). How are you?"
1 Answer
Brandon Mahoney
iOS Development with Swift Techdegree Graduate 30,149 PointsYou're are still trying to interpolate but it wants you to concatenate this time.
// Enter your code below
let name = "Brandon"
let greeting = "Hi there, \(name)"
let finalGreeting = greeting + " How are you?"
Groshvin Grover
327 PointsGroshvin Grover
327 PointsTHANK YOU SOOO MUCH BRANDON MAHONEY!!!!