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 trial

iOS Swift Basics Swift Types String Manipulation

Julian Addison
Julian Addison
13,302 Points

Why won't this code pass the test?

I don't understand what is going on here. I've run the code in Xcode and it doesn't give me any problems and has the correct output. Am I missing something?

strings.swift
// Enter your code below
let name = "Julian"
let greeting = "Hi there, \(name)"

let finalGreeting = "\(greeting). How are you?"

1 Answer

Brendan Whiting
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Brendan Whiting
Front End Web Development Techdegree Graduate 84,736 Points

To build up finalGreeting, they want you to use concatenation instead of interpolation. It will produce the same result, but they just want to make sure you have both tools at your disposal.

Julian Addison
Julian Addison
13,302 Points

Thanks! Should have read the prompt better, makes sense.