Question 2-3

Give Smalltalk code for defining a new instance method deductPenalty in our Account class, which should deduct 10 from the balance if the current balance is below 500. Your code should use the withdraw: method already defined for the Account class.

Solution

deductPenalty
    balance < 500 ifTrue: [ self withdraw: 10 ]

Back to Quiz 2