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 Collections Ruby Arrays Accessing Items in Arrays

miranda dunlop
miranda dunlop
646 Points

irb when do you use it pls

When do you code in irb pls?

1 Answer

Jay McGavren
STAFF
Jay McGavren
Treehouse Teacher

When you want to write a multi-line program that you're going to keep around and run many times, you want to write an .rb file in your editor and run it with the ruby command. But when you are just experimenting and trying out code, you can use irb. It lets you run the same statement many different ways, and see what the results are each time.

There's never anything you have to use irb for. But you can choose to use it when you're just experimenting.