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 trialMathias Bakken
3,167 PointsHow do I return 'language' and 'greeting' as a tuple?
I can't seem to make it work on this. I am able to do it in my playground. Can you give me a hint?
func greeting(person: String) -> String {
let language = "English"
let greeting = "Hello \(person)"
return (greeting,language)
}
2 Answers
Dan Oswalt
23,438 PointsYou'll want to specify the return value as a tuple in the declaration, i.e. -> (language: String, greeting: String)
Mathias Bakken
3,167 Pointsfunc greeting(person: String) -> (language: String, greeting: String) { let greeting = ("Hello (person)", "English") return greeting }
Figured it out. Thank You!!
Chance Smith
6,525 PointsChance Smith
6,525 PointsThis is correct, but wasn't present or clear in the video. http://sht.tl/aAojNL (screenshot of video)
see @6:16 minutes https://teamtreehouse.com/library/functions-and-optionals/parameters-and-tuples/tuples