mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
18 lines
255 B
Markdown
18 lines
255 B
Markdown
# Read Library
|
|
|
|
The `(scheme read)` library provides procedures for reading Scheme objects.
|
|
|
|
- [`read`](#read)
|
|
- `read-all`
|
|
|
|
#read
|
|
|
|
(read)
|
|
(read port)
|
|
|
|
#read-all
|
|
|
|
(read)
|
|
(read port)
|
|
|
|
Read all objects from a port and return them as a list.
|