# REPL
Topics: [[Software development]]
A REPL (pronounced "REP-UL") is an interactive way to use a programming language. To make this work, the computer does four things:
1. **R**ead the user input (commands).
2. **E**valuate your code.
3. **P**rint any results.
4. **L**oop back to step 1.