REPL.md (385B)
1 # REPL (Haskell) 2 3 **Source:** Effective Haskell 4 5 **Chapter:** 1 6 7 **Definition:** Read Evaluate Print Loop 8 9 ## Usage 10 11 ### Setup 12 13 Run `:set prompt "Prelude> "` to set Prelude> as your prompt which gives access to common functionallity. 14 15 ### Loading Code 16 17 You can load code with the `:load` command. This is very useful for debugging as it gives access to functions defined in the code.