Write a guide showing how to create a REPL within the Clojure REPL. This helps understanding of how the REPL process works in Clojure. ## Basic Example ```clojure (defn repl-repl "Repl within a REPL" (loop [] (print (eval (read))) (recur))) ```