top level

This commit is contained in:
xenia 2023-12-05 01:52:02 -05:00
parent 2ae1814d0a
commit c170d8b75a
1 changed files with 17 additions and 0 deletions

View File

@ -88,4 +88,21 @@ why use async channels when u can
#<procedure:+> #<procedure:+>
``` ```
- 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 - **TODO** more