IronScheme Nears Final Release
- Share
-
- |
Read later
Reading List

A note to our readers: You asked so we have developed a set of features that allow you to reduce the noise: you can get email and web notifications for topics you are interested in. Learn more about our new features.
IronScheme, the R6RS implementation of Scheme for DLR, has reached RC1 after one year of being in beta.
IronScheme is the effort of Llewellyn Pritchard, aka Leppie, author of the xacc.ide IDE, a development environment for .NET languages. He initially created IronLisp, but discovering that no one was interested in yet another LISP dialect Leppie decided to implement Scheme and to make it run on top of the DLR. The result was IronScheme. After being an alpha project for 10 months and going through 4 beta releases over the period of one year, IronScheme is closing its official 1.0 release being RC1 at this point.
IronScheme can be invoked through the command prompt, a REPL environment, or by being embedded as a scripting library in .NET applications. It runs on .NET/32 and 64 bit and Mono/32 bit.
IronScheme currently passes 8880 tests from the PLT Scheme test suite with only 4 tests not passing yet. Two features are still lacking and Leppie’s plan is to address those in v. 2.0:
- call/cc only supports escape continuations, trying to re-invoke a continuation will result in an error
- during development of beta 2, I made a CPS version, but is too slow to be useful currently, this will be addressed in IronScheme 2.0
Still needed and are to be addressed before the final release: more testing, more integration with CLR and complete documentation. The project is published under MS-PL License.
Resources: Interview with Leppie, Host IronScheme in Your .NET Applications, The Scheme Language Is to Be Split in Two.
Rate this Article
- Editor Review
- Chief Editor Action
Hello stranger!
You need to Register an InfoQ account or Login or login to post comments. But there's so much more behind being registered.Get the most out of the InfoQ experience.
Tell us what you think
"but discovering that no one was interested in yet another LISP dialect"
by
Josh Graham
Clojure seems to be quite popular on the JVM with the software developers I spend time with.
While influenced by other languages too, ioke is also a Lisp-y language on both JVM and CLR.
Nonetheless, it's nice to see this work - I'm looking forward to tinkering!
JoshG