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 trialRufaro Makoroni
2,551 PointsMay I please get assistance on task 2of2 on Structs. my code is below.
struct Expense { var description:String var amount:Double
init (description:String){
self.description = description
}
}
var travel = Expense(description:"Flight to Cupertino",amount:"500.00")
struct Expense {
var description:String
var amount:Double
init (description:String){
self.description = description
}
}
var travel = Expense(description:"Flight to Cupertino",amount:"500.00")
2 Answers
Steve Hunter
57,712 PointsHiya,
First off, the amount
variable is a Double, so you don't need the double quotes around the value you are assigning to it. So, 500.00
not "500.00"
.
I think that'll get you through it.
Steve.
Chase Marchione
155,055 PointsYou're very close!
A) One issue is that you have a numerical (double) argument in quotes, as if it's a string. B) The other is that an init block isn't necessary for the creation of this struct.
struct Expense {
var description:String
var amount:Double
}
var travel = Expense(description:"Flight to Cupertino", amount:500.00)
Hope this helps.
Rufaro Makoroni
2,551 Pointsthank you.