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 trialPaula Samuels
1,853 PointsI'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...
func greeting(person: String)->String {
return person
}
Michael Liendo
15,326 PointsI agree with Jhoan Arango , what exactly is the challenge asking?
1 Answer
kjvswift93
13,515 PointsYou need to simply prefix the person parameter with # to make it an external parameter.
func greeting(#person: String) {
println("Hello \(person)")
}
greeting(person: "Jerry")
Jhoan Arango
14,575 PointsJhoan Arango
14,575 PointsIs 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..