From bf0e6ecd42d43a81f8d64b69c39456a0b7f4052b Mon Sep 17 00:00:00 2001 From: "the Phoeron\" Colin J.E. Lupton" <thephoeron@protonmail.com> Date: Thu, 25 Aug 2022 13:47:58 -0400 Subject: [PATCH] Remove deprecated section about the in-browser REPL from Ex 1.1.8 --- 1-01-08-configuration.md | 8 -------- CHANGELOG.md | 1 + 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/1-01-08-configuration.md b/1-01-08-configuration.md index 0fe718e..7053a5b 100644 --- a/1-01-08-configuration.md +++ b/1-01-08-configuration.md @@ -4,14 +4,6 @@ Now that you've gotten yourself a feel for Common Lisp, you'll want to spend a little time configuring your development environment so that you can dive right into the code. A lot of configuration choices are a matter of personal taste, but as long as you feel comfortable, and nothing interferes with your ability to learn and hack in Lisp, you can't really go wrong. -### The In-Browser REPL - -(Deprecated) - -You can start hacking in Lisp right away with the in-browser, javascript-powered REPL under the "Try Lisp" section of this site, listed in the navigation bar at the top of each page. It takes you through a quick tour of Common Lisp so you can get your feet wet without installing anything. - -To continue with this book, however, you will need to install Common Lisp on your computer. Not all the exercises in this book will run in the in-browser REPL, so make sure you get SBCL installed and working correctly before moving on to the next exercise. - ### Installing SBCL Steel Bank Common Lisp is one of the easiest Lisp implementations to get up and running—it has out of the box support for a wide selection of platforms, and is considered to be the most robust implementation available. Since it automatically compiles everything you enter at the REPL, your running Lisp processes also benefit from a major speed-boost over other Lisps. diff --git a/CHANGELOG.md b/CHANGELOG.md index e47786d..ee4fd2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Exercise 1.1.8, "Configuring Your Development Environment" - Clean-up inline hints + - Remove deprecated section about the in-browser REPL ## 2022-08-24 -- GitLab