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 trialshane reichefeld
Courses Plus Student 2,232 PointsI dont know what to do
help please
struct Person {
let firstName: String
let lastName: String
func getFullName() -> String {
return "\(firstName) \(lastName)"
}
}
let fullName = Person(firstName: String, lastName: String)
1 Answer
Paul Brazell
14,371 PointsYou are asked to create a variable called aPerson to store the instance of the person. Once you have that person, you store the result of the getFullName() method to the constant fullName. Make sure to read the questions carefully to ensure that you are completing all steps required.
struct Person {
let firstName: String
let lastName: String
func getFullName() -> String {
return "\(firstName) \(lastName)"
}
}
let aPerson = Person(firstName: "Paul", lastName: "Brazell")
let fullName = aPerson.getFullName()