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 Object-Oriented Swift 2.0 Complex Data Structures Adding Instance Methods

Mario Kratafila
Mario Kratafila
1,178 Points

This practice example gives me an error though I solved the problem well.

Please fix it...

structs.swift
struct Person {
    let firstName: String
    let lastName: String

    func getFullName() -> (String) {
        return firstName+" "+lastName
    }

}


let aPerson = Person(firstName: "Mario", lastName: "Kratafila")

aPerson.getFullName()

let fullName = aPerson.getFullName()

4 Answers

Steven Deutsch
Steven Deutsch
21,046 Points

Hey Mario,

Try this code: I reformatted it and kept only what is essential for the solution to pass.

struct Person {
    let firstName: String
    let lastName: String

    func getFullName() -> String {
        return "\(firstName) \(lastName)"
    }

}

let aPerson = Person(firstName: "Mario", lastName: "Kratafila")

let fullName = aPerson.getFullName()
Steven Deutsch
Steven Deutsch
21,046 Points

Hey Mario Kratafila,

Your code passes fine for me. Try restarting your web browser.

Good Luck!

Mario Kratafila
Mario Kratafila
1,178 Points

Hi Steven,

Still gives me the error: The value being assigned to fullName must be the result of calling the instance method getFullName()

I restarted the Safari browser.