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

Josh Ko
Josh Ko
1,510 Points

In general, is it ok to give a function and items returned by the function the same name?

Personally I think it is confusing but I was wondering if there was a reason why both the function name and the first item returned by the function were both named "greeting"

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

    return greeting
}

var result = greeting("Tom")
println(result.language)

1 Answer

It is valid, but I am guessing that it is not advisable to use the exact word for both the function name and the name of one of the vars or constants within that function in practice