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

not sure why i am getting this wrong

yea, I'm a beginner, and this may seem pretty elementary but in this Concatenated final greeting, i'm not sure why my code i wrong.

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

2 Answers

donnie, you are using String interpolation rather than concatenation. Try this instead:

let name = "Donnie"
let greeting = "Hi there, \(name)"
let finalGreeting = greeting + " How are you?"

The + sign "adds" the two Strings together.

thank you!

i did try this, and still was wrong.

donnie, try this one. It seems I left out a period it wanted after the name:

let name = "Donnie"
let greeting = "Hi there, \(name)."
let finalGreeting = greeting + " How are you?"
Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

jcorum He posted the question elsewhere and his code has changed to have finalgreeting as the constant instead of finalGreeting so the challenge is rejecting it. :(