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 trial

iOS

Chirs Davies
Chirs Davies
6,379 Points

help 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
Stone Preston
42,016 Points

you 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

Chirs Davies
Chirs Davies
6,379 Points

agh cheers, i was putting a comma instead of a full stop

If you are looking for the value of language you should write:

println(result.greeting)