# HG changeset patch # User Steve Losh # Date 1536010086 0 # Node ID 5ffc061c83291e51b9f991225b0ace488355fe7b # Parent 15d85e4bcf1d1d78aee319872e9a77bff627ae3c Define REPL diff -r 15d85e4bcf1d -r 5ffc061c8329 content/blog/2018/08/a-road-to-common-lisp.markdown --- a/content/blog/2018/08/a-road-to-common-lisp.markdown Mon Aug 27 22:24:20 2018 +0000 +++ b/content/blog/2018/08/a-road-to-common-lisp.markdown Mon Sep 03 21:28:06 2018 +0000 @@ -367,9 +367,10 @@ Don't worry about what this means yet, it's just a check that everything's working properly. -Open an SBCL or CCL REPL and load the file by entering `(load "hello.lisp")`, -then call the function and make sure it works. It should look something like -this if you picked SBCL: +Open an SBCL or CCL REPL ([Read/Eval/Print +Loop](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop)) and +load the file by entering `(load "hello.lisp")`, then call the function and make +sure it works. It should look something like this if you picked SBCL: $ sbcl * (load "hello.lisp")