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 Named Parameters

I've created a function called greeting that uses 'person' as its parameter, but apparently something's still wrong.

I continue getting the same generic "Bummer" message which is just a repetition of the the original task description. No help whatsoever...

named_parameters.swift
func greeting(person: String)->String {
return person
}
Jhoan Arango
Jhoan Arango
14,575 Points

Is the challenge asking you to make it a return ? If its only asking you to create a function that takes β€œperson” as a parameter then you are adding extra things to the function..

func greeting(person: String) {
println(person)

}
Michael Liendo
Michael Liendo
15,326 Points

I agree with Jhoan Arango , what exactly is the challenge asking?

1 Answer

You need to simply prefix the person parameter with # to make it an external parameter.

func greeting(#person: String) {
    println("Hello \(person)")
}
greeting(person: "Jerry")