This commit is contained in:
Justin Ethier 2016-01-12 23:11:22 -05:00
parent 4f71809b3d
commit ec56177f4d

View file

@ -9,13 +9,13 @@
- [Command Line Options](#command-line-options) - [Command Line Options](#command-line-options)
- [Generated Files](#generated-files) - [Generated Files](#generated-files)
- [Interpreter](#interpreter) - [Interpreter](#interpreter)
- Language Details - [Language Details](#language-details)
- explain how programs are setup - explain how programs are setup
- outline scheme language based on r7rs, link to it. - outline scheme language based on r7rs, link to it.
explain differences between cyclone implementation and r7rs, or again at least link to them explain differences between cyclone implementation and r7rs, or again at least link to them
- provide API, or at least links to the API - provide API, or at least links to the API
- what else? - what else?
- Foreign Function Interface - [Foreign Function Interface](#foreign-function-interface)
- Debugging - Debugging
include profiling instructions? include profiling instructions?
- Limitations??? - Limitations???
@ -102,6 +102,20 @@ File Extension | Notes
## Interpreter ## Interpreter
Scheme code can be evaluated interactively using the `icyc` command:
$ icyc
cyclone> (write 'hello-world)
hello-world
# Language Details
TODO
# Foreign Function Interface
TODO
# Licensing # Licensing
Cyclone is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php). Cyclone is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php).