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 trialRoss Weeden
1,930 Pointscan't return "Hello Fred"
func greeting (person: String) -> String { print("Hello (greeting)") return person } greeting(Fred)
func greeting (person: String) -> String {
print ("Hello \(greeting)")
return person
}
2 Answers
Michael Reining
10,101 PointsHi Ross,
There are a couple of mistakes in your syntax.
We need to return the name of the person. Right now you are returning the gretting function which is not right.
You need to remove the print statement and just return the greeting like this.
func greeting(person: String) -> String {
return ("Hello \(person)") // return the name of the person
}
I hope that helps,
Mike
PS: Thanks to the awesome resources on Team Treehouse, I launched my first app.
Now you can practice writing Swift code directly on your iPhone :-)
Ross Weeden
1,930 Pointsthanks michael, much appreciated