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 Swift Functions and Optionals Parameters and Tuples Tuples

boris said
boris said
3,607 Points

I am on the third question of the tuples challenge and the error code is bummer try again please help

It runs fine in Xcode and gives me all the needed information

tuples.swift
func greeting(person: String) -> (greeting: String, language: String) {
    let language = "English"
    let greeting = "Hello \(person)"
    let both = (greeting, language)

    return both


}

var result = greeting("Tom")

    println(result)

2 Answers

An interesting solution!

The last line needs you to print out the language part of the tuple. You can do that with dot notation, such as:

println(result.language)

By way of completeness, your code could be one line shorter without losing much in clarity:

func greeting(person: String) -> (greeting: String, language: String) {
    let language = "English"
    let greeting = "Hello \(person)"

    return (greeting, language)
}

That does exactly the same thing and the longer version is no big deal! It's only one line!

Steve.

Maximiliane Quel
PLUS
Maximiliane Quel
Courses Plus Student 55,489 Points

Hi,

you were almost there. You want to print just the language part from the results variable so you need to access it like so:

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)