mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-09 22:17:33 +02:00
WIP
This commit is contained in:
parent
4f71809b3d
commit
ec56177f4d
1 changed files with 16 additions and 2 deletions
|
@ -9,13 +9,13 @@
|
|||
- [Command Line Options](#command-line-options)
|
||||
- [Generated Files](#generated-files)
|
||||
- [Interpreter](#interpreter)
|
||||
- Language Details
|
||||
- [Language Details](#language-details)
|
||||
- explain how programs are setup
|
||||
- outline scheme language based on r7rs, link to it.
|
||||
explain differences between cyclone implementation and r7rs, or again at least link to them
|
||||
- provide API, or at least links to the API
|
||||
- what else?
|
||||
- Foreign Function Interface
|
||||
- [Foreign Function Interface](#foreign-function-interface)
|
||||
- Debugging
|
||||
include profiling instructions?
|
||||
- Limitations???
|
||||
|
@ -102,6 +102,20 @@ File Extension | Notes
|
|||
|
||||
## 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
|
||||
Cyclone is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php).
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue