Update README.md

This commit is contained in:
Justin Ethier 2015-07-24 13:24:07 -04:00
parent 0aa921a553
commit d972fe8cd7

View file

@ -5,15 +5,15 @@ Cyclone is an experimental Scheme-to-C compiler that uses the [Cheney on the MTA
Getting Started Getting Started
--------------- ---------------
If you are installing Cyclone on your machine for the first time use [cyclone-bootstrap](https://github.com/justinethier/cyclone-bootstrap) to build a set of binaries. 1. To install Cyclone on your machine for the first time use [cyclone-bootstrap](https://github.com/justinethier/cyclone-bootstrap) to build a set of binaries.
After installing you can run the `cyclone` command to compile a single Scheme file: 2. After installing you can run the `cyclone` command to compile a single Scheme file:
$ cyclone examples/fac.scm $ cyclone examples/fac.scm
$ examples/fac $ examples/fac
3628800 3628800
And the `icyc` command to start an interactive interpreter: And the `icyc` command to start an interactive interpreter:
$ icyc $ icyc
@ -41,7 +41,7 @@ Documentation
For more information about the Scheme language implemented by Cyclone, see the [R<sup>7</sup>RS Scheme Specification](http://trac.sacrideo.us/wg/wiki). For more information about the Scheme language implemented by Cyclone, see the [R<sup>7</sup>RS Scheme Specification](http://trac.sacrideo.us/wg/wiki).
The [features](FEATURES.md) page lists what has been implemented so far. The [features](FEATURES.md) page lists the language features currently implemented.
The [development](docs/Development.md) page contains instructions for hacking on Cyclone. The [development](docs/Development.md) page contains instructions for hacking on Cyclone.