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 trialArmin Luschin
Courses Plus Student 1,948 PointsI don't know what's wrong
It works in XCode
func greeting(person: String) -> (language: String, greeting: String) {
let language = "English"
let greeting = "Hello \(person)"
return (language, greeting)
}
var result = greeting("Tom")
3 Answers
Armin Luschin
Courses Plus Student 1,948 PointsI found what was wrong:
Apparently, you need to return the tuple in a specific order (greeting, language) for the challenge to be accepted as correct. I had the order mixed up.
Lukes Ivi
2,001 PointsA similar question was asked: https://teamtreehouse.com/forum/whats-wrong-15
You're missing another String parameter for greeting. Take out the 2nd output String.
Hope that works.
Lukes Ivi
2,001 PointsA similar question was asked: https://teamtreehouse.com/forum/whats-wrong-15
You're missing another String parameter for greeting. Take out the 2nd output String.
Hope that works.