Ruby - Inheritance
Find the problem in this Ruby code snippet:
class BankAccount
protected
def balance
1000
end
end
account = BankAccount.new
puts account.balance