Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jason Zheng
7,943 PointsWhy can't my code work?
struct Person {
let firstName: String
let lastName: String
func getFullName() -> (String) {
let fullName = firstName + " " + lastName
return fullName
}
}
let aPerson = Person(firstName: "Jason", lastName: "Zheng")
let fullName = aPerson.getFullName()

Paul Brazell
14,371 PointsChris, that would be the case if you were doing external parameters. Since the function is defined inside the body of the struct, it has access to all of its properties.
2 Answers

Paul Brazell
14,371 PointsTake away the parenthesis in the return type of the getFullName method. This worked for me.
struct Person {
let firstName: String
let lastName: String
func getFullName() -> String {
let fullName = firstName + " " + lastName
return fullName
}
}
let aPerson = Person(firstName: "Jason", lastName: "Zheng")
let fullName = aPerson.getFullName()

Jason Zheng
7,943 PointsThanks, Paul!

chrisverra
3,760 PointsAh I see Paul, my mistake. Good oppertunity to learn for me as well :)
chrisverra
3,760 Pointschrisverra
3,760 PointsI think because your function does not know about let firstName and let lastName you should hand them as parameters
func getFullName(String: firstName, String: lastName)
something like that