From 5752080968b7313e092a37f1e8103031a500579d Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 14 Jan 2016 03:10:50 -0500 Subject: [PATCH] Revised --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 903d3e83..0d7c4813 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [cyclone-scheme](http://github.com/justinethier/cyclone) -Cyclone is an experimental Scheme-to-C compiler that uses a variant of the [Cheney on the MTA](http://www.pipeline.com/~hbaker1/CheneyMTA.html) technique to implement full tail recursion, continuations, generational garbage collection, and native threads. Unlike previous Cheney on the MTA compilers, Cyclone allows multiple native threads each with their own stack. A tracing garbage collector is used to manage the second-generation heap and perform major collections without "stopping the world". +Cyclone is an experimental Scheme-to-C compiler that uses a variant of the [Cheney on the MTA](http://www.pipeline.com/~hbaker1/CheneyMTA.html) technique to implement full tail recursion, continuations, generational garbage collection, and native threads. Unlike previous Cheney on the MTA compilers, Cyclone allows execution of multiple native threads. A tracing garbage collector is used to manage the second-generation heap and perform major collections without "stopping the world". Getting Started ---------------