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

Whenever we print something out to the screen using the puts method, internally Ruby is calling to string on it or to_s.

Hi,

Whenever we print something out to the screen using the puts method, internally Ruby is calling to string on it or to_s.

Could you explain about "internally Ruby is calling to string on it" in detail?

Thanks, Ross

1 Answer

Hi Ross!

What this means is that Ruby takes whatever parameter you are supplying the 'puts' function and, behind the scenes, converting it to a string. This is something that Ruby does for you so you don't have to go through the trouble of doing it every time on your own. Programming languages often do helpful things for this like us behind the scenes.

I hope that this helped you out and happy holidays!

-Luke