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

Ruby Ruby Objects and Classes Build a Bank Account Class Printing The BankAccount

yelmi almonte
yelmi almonte
10,685 Points

Help me Please Ruby Object

Please Help me with this code

puts "Name:".ljust(5) + @name.rjust(6) +  "," + " Balance:" + sprintf("%0.2f",balance).rjust(5)

The Goals #Name: [name], Balance: [balance]

My output #Name: Yelmi, Balance: 0.00

1 Answer

Hi Yelmi,

The solution here needs you to use string interpolation to include two variables inside the output string. You can include a variable value in a string by adding a hash, then putting the varaible name inside curly braces #{var}.

So, to get the output string correct, you need to create a method called to_s and return the string like this:

  def to_s
    return "Name: #{name}, Balance: #{balance}"
  end

I hope that helps.

Steve.