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

Java

Rodrigo Gomez-Palacio
Rodrigo Gomez-Palacio
1,125 Points

I still don't understand REPL can someone clear this up?

What is REPL?

Zachary Green
Zachary Green
16,359 Points

as you probably know it stands for Read Evaluate Print Loop. its an environment where you can test one line or function of code and not have to set up a full environment to test. lets say i want to test an array loop in php. i could spin up a server and test the file in the browser or run the file in the command line. with REPL i can just test that one piece without much overhead. hope this helps.

1 Answer