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 trialkerim can çelik
Courses Plus Student 564 Pointsi am writing true
i am writig true bit it says interpolated string if i ride interpolated string it says wrong
// Enter your code below
let name = "kerim"
let greeting = "hi there,kerim"
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! Unfortunately, you haven't shown us yet your attempt an interpolated string only a string literal with no interpolation. Without changing the first line of code, this is what your second line should look like:
let greeting = "Hi there, \(name)"
Challenges are very strict and looking for specific things. It could be that you have tried something similar to this. However, your string did not begin with a capital "H" in "Hi nor was there a space after the comma. Your results must match to the letter. This includes capitalization, spelling, punctuation, and even spacing.
Hope this helps!