Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Rodrigo Gomez-Palacio
1,125 PointsI still don't understand REPL can someone clear this up?
What is REPL?
1 Answer

Craig Dennis
Treehouse TeacherHere is a wikipedia article on the REPL concept. It's really good!
Zachary Green
16,359 PointsZachary Green
16,359 Pointsas 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.