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

David Lerdahl
David Lerdahl
728 Points

some help with this plz

whats wrong, tuple are hard

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

    return greeting
    }

1 Answer

Erico Souza Mendes
Erico Souza Mendes
3,732 Points

Actually, you got to leave the constants as they already are, create the tuples on the function after the "->" and call the tuples at the return of the function.

It goes like this:

func greeting(person: String) -> (greeting: String, language: String) /* < here you create the tuples */ {
    let language = "English"
    let greeting = "Hello \(person)" //you don't change anything at the constants 

    return (greeting, language) //And here you return the tuples
    }

Hope it helped :D