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 trialyeshwanth krishna
786 PointsModify the definition of the function named greeting to return a String and replace the println statement with a return
not able to sort out,help please.
func greeting(person: String) {
return greeting
}
greeting("Tom")
println("Hello \(greeting)")
1 Answer
Mark Cranston
1,817 Pointsby returning the function "greeting" you are just making the function call it's self. you need to return 'the greeting' the function is making.
//first add "->String" so the function knows to return a string
func greeting(person: String)-> String {
// then return the string greeting "Hello \(Person)"
return ("Hello \(person)")
}
//No need for additional variables