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 trialJavier Mateo
2,624 Pointsswift functions
What is missing from my code ?
func greeting(person: String) {
println("Hello \(person)")
}
greeting("Tom")
Javier Mateo
2,624 PointsYeah that was weird , I rewrote it the same way and got it correct
1 Answer
kjvswift93
13,515 PointsYou need to replace the println statement with a return statement.
func greeting(person: String) -> String {
return "Hello \(person)"
}
Stefano Cerelli
6,595 PointsStefano Cerelli
6,595 PointsNothing, is right. Wich kind of problem do you have?