This commit is contained in:
Justin Ethier 2016-09-08 01:47:43 -04:00
parent c3341b80e4
commit 4dee44d9a1

View file

@ -1,6 +1,6 @@
[<img src="docs/images/cyclone-logo-04-header.png" alt="cyclone-scheme">](http://github.com/justinethier/cyclone)
Cyclone is a brand-new Scheme-to-C compiler that uses [Cheney on the MTA](http://www.pipeline.com/~hbaker1/CheneyMTA.html) to implement full tail recursion, continuations, and generational garbage collection. In addition, Cyclone extends the Cheney on the MTA concept to allow execution of multiple native threads. An on-the-fly garbage collector is used to manage the second-generation heap and perform major collections without "stopping the world".
Cyclone is a brand-new Scheme-to-C compiler that uses [Cheney on the MTA](http://www.pipeline.com/~hbaker1/CheneyMTA.html) to implement full tail recursion, continuations, and generational garbage collection. In addition, the Cheney on the MTA concept has been extended to allow execution of multiple native threads. An on-the-fly garbage collector is used to manage the second-generation heap and perform major collections without "stopping the world".
Cyclone is the first compiler written entirely in the latest R<sup>7</sup>RS Scheme language standard. A large portion of the language is supported and the goal is for Cyclone to allow practical development of applications using R<sup>7</sup>RS.