From c170d8b75a4258aaadce320e585828757c074d5a Mon Sep 17 00:00:00 2001 From: haskal Date: Tue, 5 Dec 2023 01:52:02 -0500 Subject: [PATCH] top level --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 62df6bc..69c8be4 100644 --- a/README.md +++ b/README.md @@ -88,4 +88,21 @@ why use async channels when u can # ``` +- the top level is hopeless + +```scheme +> (define (map) map) +> (eq? (map) map) +#f +> (define (map) map) +> (eq? (map) map) +#t +``` + +```scheme +> (define (map) (#%top . map)) +> (eq? (map) map) +#t +``` + - **TODO** more