From ec56177f4df926e4069c608d93dbd4ae30a6335e Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 12 Jan 2016 23:11:22 -0500 Subject: [PATCH] WIP --- docs/User-Manual.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/User-Manual.md b/docs/User-Manual.md index 97815bab..a599ac00 100644 --- a/docs/User-Manual.md +++ b/docs/User-Manual.md @@ -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).