top level
This commit is contained in:
parent
2ae1814d0a
commit
c170d8b75a
17
README.md
17
README.md
|
@ -88,4 +88,21 @@ why use async channels when u can
|
|||
#<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
|
||||
|
|
Loading…
Reference in New Issue