Repl docs

This commit is contained in:
Justin Ethier 2018-04-30 20:45:06 -04:00
parent 8824bf38af
commit 8d2660ae40
2 changed files with 26 additions and 0 deletions

View file

@ -30,6 +30,7 @@ This section of the Cyclone API is based on the [R<sup>7</sup>RS Scheme Specific
- [`scheme load`](api/scheme/load) - [`scheme load`](api/scheme/load)
- [`scheme process-context`](api/scheme/process-context) - [`scheme process-context`](api/scheme/process-context)
- [`scheme read`](api/scheme/read) - [`scheme read`](api/scheme/read)
- [`scheme repl`](api/scheme/repl)
- [`scheme time`](api/scheme/time) - [`scheme time`](api/scheme/time)
- [`scheme write`](api/scheme/write) - [`scheme write`](api/scheme/write)

25
docs/api/scheme/repl.md Normal file
View file

@ -0,0 +1,25 @@
---
layout: main
title: API
---
# REPL Library
The `(scheme repl)` library provides functions related to Read-Eval-Print-Loops.
For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.pdf).
- [`interaction-environment`](#interaction-environment)
- [`repl`](#repl)
# interaction-environment
(interaction-environment)
This procedure returns a specifier for a mutable environment that is the same as the one used by Cyclone's built-in REPL.
# repl
(repl)
Starts an interactive REPL. This is not a standard function provided by R7RS.