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 Swift Enums and Structs Structs Stored Properties

Kristof Kocsis
Kristof Kocsis
15,455 Points

Unknown error

Hi,

I am trying to complete this challenge but the complier always tells me that my code can't be completed. When I click on show errors I ge a blank screen and Xcode doesn't complain either, what is the problem?

struct.swift
struct Expenses {
    var description: String
    var amount: Double
}

var travel = Expenses(description:"Flight to Cupertino" , amount: 500.00)

1 Answer

Jhoan Arango
Jhoan Arango
14,575 Points

Hello Kristof:

It seems that your code looks good, but maybe the comma in your instance has a lot of space and maybe that’s causing the compiler not to read it. I just completed the challenge with this code that looks the same as yours but the comma is right after the string.

struct Expense {

var description: String
var amount: Double

}

var travel = Expense(description: "Flight to Cupertino", amount: 500.00)

Try that and see if that works.