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!
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
Chirs Davies
6,379 Pointshelp please
Using the println statement, print out the value of the language element from the result tuple.
func greeting(person: String) -> (greeting: String, language: String) { let language = "English" let greeting = "Hello (person)"
return (greeting, language)
}
var result = greeting("Tom")
i know its probably something really simple but i just can't seem to figure it out?
2 Answers

Stone Preston
42,016 Pointsyou can decompose the tuple using dot syntax like so: tupleName.tupleElementName
so since the tuple is named result and it has an element called language you would use result.language
func greeting(person: String) -> (greeting: String, language: String) {
let language = "English"
let greeting = "Hello \(person)"
return (greeting, language)
}
var result = greeting("Tom")
println(result.language)
the swift eBook has a section that covers tuples here

Siamak Pourhabib
2,962 PointsIf you are looking for the value of language you should write:
println(result.greeting)
Chirs Davies
6,379 PointsChirs Davies
6,379 Pointsagh cheers, i was putting a comma instead of a full stop