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 2.0 Basics Swift Types String Manipulation

Challenge Task 2 of 2 for Swift 2.0 Basics not working.

My code is not satisfying the workspace for Treehouse even though via xCode it appears to be outputting just fine.

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

strings.swift
let name = "Timothy Boehm"
let greeting = "Hi there, \(name)."
let finalGreeting = "\(greeting) How are you?"

1 Answer

The code challenge is expecting something a little bit different. If you look at the value of "finalGreeting" it is going to be "Hi there, Timothy Boehm. How are you?". The code challenge is expecting the value of "finalGreeting" to be this: "Hi there, Timothy Boehm, how are you?". See the difference? Code challenges are extremely picky.

Good luck! ~Alex

Thank you Alex. I appreciate the fast response!!

No problem :)