Guest User

Untitled

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Account
  2. attr_reader :cleared_balance # accessor method 'cleared_balance'
  3. protected :cleared_balance # and make it protected
  4. def greater_balance_than(other)
  5. return @cleared_balance > other.cleared_balance
  6. end
  7. end
Add Comment
Please, Sign In to add comment