Adding api doc stub

This commit is contained in:
Justin Ethier 2016-01-11 23:07:34 -05:00
parent ef7adf298c
commit 22b38b863b
2 changed files with 28 additions and 0 deletions

View file

@ -45,6 +45,16 @@ Section | Status | Comments
TODO: list each supported library here, and link to a separate page with that library's API as implemented by Cyclone
base
char
eval
file
load
process-context
[scheme read](docs/api/scheme/read.md)
time
write
# SRFI Support
Cyclone supports the following [Scheme Requests for Implementation (SRFI)](http://srfi.schemers.org/) libraries:

18
docs/api/scheme/read.md Normal file
View file

@ -0,0 +1,18 @@
# 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.