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 trialbecky hayes
2,226 Pointsnote sure what i'm missing and why
'String' is not convertible to '(language: String, greeting: String)' return greeting ^
func greeting(person: String) -> (language: String,greeting: String) {
let language = "English"
let greeting = "Hello \(person)"
return greeting
}
2 Answers
Harry Jones
2,964 Points(language: String,greeting: String)
If you say that you're going to return a langauge that is a String, and a greeting that is a String, you need to actually do that. So in your return statement say something like
return (language: language, greeting: greeting);
That may not be right, so let me know what happens. :P
Harry Jones
2,964 Points(language: String,greeting: String)
If you say that you're going to return a langauge that is a String, and a greeting that is a String, you need to actually do that. So in your return statement say something like
return (language: language, greeting: greeting);
That may not be right, so let me know what happens. :P