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

Antonio Byse
Antonio Byse
722 Points

will not let me advance to next course. have tried several different answers which still dont seem to be correctly writt

help

strings.swift
// Enter your code below

let name = "tonio"
let greeting = "hiThere \(name)" 

1 Answer

Hi Antonio,

Everything seems to be right except from the string. Change the string to the following:

let name = "tonio"
let greeting = "Hi there, \(name)" 
Antonio Byse
Antonio Byse
722 Points

gracias muy bien