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 trialShawn Fair
1,651 PointsWhat am i doing Wrong?
What am i doing wrong
struct Expense {
var description: String
var amount: Double = 0.0
init (description: String) {
self.description = description
}
func calculateTaxes(percentage: Double) -> Double {
return self.amount * (percentage/100)
}
}
var item = Expense(description: "Cool")
item.amount = 100
var taxes = calculateTaxes(7.5/100)
2 Answers
Kristian Egebæk-Carlsen
9,189 PointscalculateTaxes is a method for the Expense struct, that means that you can not call the method on its own. You need to have an instance of Expense and then call the method with the dot syntax. In this case, item is an instance of Expense and in order to call calculateTaxes you need to do it with your item like such: item.calculateTaxes(7.5/100). Note that your function will divide the argument percentage by 100, therefore there is no reason for you to do it in your method call. Hence the method call should be item.calculateTaxes(7.5)
Tim Polehn
7,461 Pointsitem.calculateTaxes(7.5)