From e9fa5638e1153e32cc0d8cd6047fe7a99ad3efc7 Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Mon, 25 Mar 2024 17:57:35 +0100 Subject: [PATCH] add a note about LIPS bookmarklet into Scheme doc about REPL --- docs/docs/scheme-intro/what-is-lisp.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/docs/scheme-intro/what-is-lisp.md b/docs/docs/scheme-intro/what-is-lisp.md index fde6df06..ac937721 100644 --- a/docs/docs/scheme-intro/what-is-lisp.md +++ b/docs/docs/scheme-intro/what-is-lisp.md @@ -93,6 +93,10 @@ scheme> And you can type your scheme code and press enter to execute it (it's often called evaluation of the expression). +**NOTE**: you can run [LIPS bookmarklet](/#bookmark) while reading this tutorial. But note that it +doesn't yet support [continuations](/docs/scheme-intro/continuations) and TCO ([Tail Call +Optimization](/docs/scheme-intro/core#tail-call-optimization)). + ### Standards Scheme is standardized in form of [RnRS documents](https://standards.scheme.org/).