From f3663c74024c9658a18406d0b8b1acc35d7ae17c Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 13 Jan 2016 22:08:49 -0500 Subject: [PATCH] Link to user manual --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bfae68d5..a7acb041 100644 --- a/README.md +++ b/README.md @@ -38,19 +38,19 @@ Getting Started You can use [`rlwrap`](http://linux.die.net/man/1/rlwrap) to make the interpreter more friendly, EG: `rlwrap icyc`. -3. If you need help learning the Scheme language try a classic textbook such as [Structure and Interpretation of Computer Programs](https://mitpress.mit.edu/sicp/full-text/book/book.html). - - Also, check out the [features](docs/Features.md) page for a list of language features currently implemented. +3. Read the documentation for detailed information on how to use Cyclone. Documentation ------------- -[Features](docs/Features.md) is a list of the language features implemented so far. For more information about the Scheme language implemented by Cyclone, see the [R7RS Scheme Specification](docs/r7rs.pdf). +The [User Manual](docs/User-Manual.md) covers in detail how to use Cyclone, and provides information and API documentation on the Scheme language features implemented by Cyclone. The [Development Guide](docs/Development.md) contains instructions for hacking on Cyclone. [Writing the Cyclone Scheme Compiler](docs/Writing-the-Cyclone-Scheme-Compiler.md) provides high-level details on how the compiler was written and how it works. +Finally, if you need a place to start learning the Scheme language try a classic textbook such as [Structure and Interpretation of Computer Programs](https://mitpress.mit.edu/sicp/full-text/book/book.html). + References ----------