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.

wwyattw
10,389 PointsLet's use the struct to create an instance of Person and assign it to a constant named aPerson. Assign any values you wa
Let's use the struct to create an instance of Person and assign it to a constant named aPerson. Assign any values you want to the first and last name properties.
Once you have an instance, call the instance method and assign the full name to a constant named fullName.
How come this isn't working? Playground shows no errors.
struct Person { let firstName: String let lastName: String
func getFullName() -> (String){
return "\(firstName) \(lastName)"
}
}
let aPerson = Person(firstName:"Tim", lastName:"Cook") let fullName = aPerson.getFullName()
struct Person {
let firstName: String
let lastName: String
func getFullName() -> (String){
return "\(firstName) \(lastName)"
}
}
let aPerson = Person(firstName: "Tim", lastName: "Cook")
let fullName = aPerson.getFullName()
2 Answers

cm21
150,854 PointsHi Ge,
Looks like a syntax/compiling issue. You'll just want to remove the parentheses that are around String.
You would replace:
func getFullName() -> (String){
with:
func getFullName() -> String{
Hope this helps!

wwyattw
10,389 PointsI didn't even realized that tiny part. Thank you so much!