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 trialDavid Phillips
3,366 PointsI'm seemingly stuck on the Tuple Challenge Task.
I can't figure out what is missing from my code. There's no errors being shown, no errors in a Swift playground, and I am outputting both elements that it asks for. What am I missing?
func greeting(person: String) -> (String, String) { let language = "English" let greeting = "Hello (person)"
return (greeting, language)
}
1 Answer
David Phillips
3,366 PointsThat did the trick!
Thanks!
Ben Holland
Courses Plus Student 4,062 PointsHappy to help !
Ben Holland
Courses Plus Student 4,062 PointsBen Holland
Courses Plus Student 4,062 Pointsi was stuck too but her is the answer:
1)
func greeting(person: String) -> (greeting: String, language: String) { let language = "English" let greeting = "Hello (person)"
return (greeting, language)
}
2) add this
var result = greeting("Tom")