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 trial
  John Baulig
9,180 Pointsto_s method
I am replication the to_s method as used in practice, but it says the format is incorrect....
class BankAccount
  attr_reader :name
  def initialize(name)
    @name = name
    @transactions = []
    add_transaction("Beginning Balance", 0)
  end
  def balance
    balance = 0
    @transactions.each do |transaction|
      balance += transaction[:amount]
    end
    balance
  end
  def debit(description, amount)
    add_transaction(description, -amount)
  end
  def credit(description, amount)
    add_transaction(description, amount)
  end
  def add_transaction(description, amount)
    @transactions.push(description: description, amount: amount)
  end
  def to_s
    puts "Name: #{name}, Balance #{balance}"
  end
end
2 Answers
Andrew Hill
8,934 PointsClose! You simply need to return the value instead of using puts.
def to_s
  return "Name: #{name}, Balance: #{balance}"
end
Alexander Davison
65,469 PointsYou are doing great! However, the challenge isn't asking you to print (with puts) the result out, but is asking you to return it like what Andrew Hill said. Add this to the BankAccount class instead of you to_s method:
def to_s
  "Name: #{name}, Balance: #{balance}"
end
John Baulig
9,180 PointsJohn Baulig
9,180 PointsThanks Andrew!