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 Functions Function Return Types

can't return "Hello Fred"

func greeting (person: String) -> String { print("Hello (greeting)") return person } greeting(Fred)

returns.swift
func greeting  (person: String) -> String {
    print ("Hello \(greeting)")
    return person
}

2 Answers

Michael Reining
Michael Reining
10,101 Points

Hi Ross,

There are a couple of mistakes in your syntax.

  1. We need to return the name of the person. Right now you are returning the gretting function which is not right.

  2. 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 :-)

Code! Learn how to program with Swift

thanks michael, much appreciated