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 Complex Data Structures Adding Instance Methods

its says there is compiler error, but not showing what it is

could someone tell me why there is compiler error?

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

    func fullName() -> String
    {

    let fullName: String = "\(firstName) \(lastName)"
    return fullName

    }   
}

let aPerson = Person(firstName: "arun", lastName: "mathew")
//aPerson.firstName = "arun"
//aPerson.lastName = "mathew"
let myFullName = aPerson.fullName

2 Answers

Hi Arun,

So the issue is that you've been asked to return a String containing the firstName and lastName variables of the struct. You have assigned it to a variable called fullName instead.

Instead you want to make sure your method does the following:

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

I hope that helps!

Hi Charles thanks for the support, still i am getting the same compilation error. In xcode the code is working with the help of init().

Hi Arun,

What code are you proceeding with now? I'll see if I can replicate it on my end for you.