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 trialSamuel Seidel
1,481 PointsNot sure what i'm doing wrong here
No idea what's happening here
func greeting(person: String) -> (language: String, greeting: String) {
let language = "English"
let greeting = "Hello \(person)"
return (language, greeting)
}
var result = greeting(person: "Tom");
1 Answer
Jhoan Arango
14,575 PointsHey Samuel :
The code looks good to me, all you need to do is take the “person” out of the function call.
func greeting(person: String){}
var result = greeting("Tom")
If you had given your parameter an external name, then you would be able to use it while calling the function.
// Swift 1.2
func greeting(#person: String){}
// Swift 2.0
func greeting(person person: String) {}
// Calling the function
var result = greeting(person: "Tom")
Here is a small explanation of the parameter names.
“Function parameters have both an external parameter name and a local parameter name. An external parameter name is used to label arguments passed to a function call. A local parameter name is used in the implementation of the function.”
“The Swift Programming Language” iBooks. https://itun.es/us/k5SW7.l