Skip to content
Llewellyn Pritchard edited this page Jan 10, 2021 · 4 revisions

Scheme help

Tutorials

R6RS

SRFI

General

Editors/IDE's

.NET interoperability

Common .NET type system

Using IronScheme from .NET

Using .NET from IronScheme

Additional features in the (ironscheme) library

Running IronScheme

Developing IronScheme

Known limitations

  • call/cc does not support reifying continuations, iow the continuation must be called from the dynamic extent. Similar to
    Racket's call/ec
  • due to above, multiple values are simulated and becomes a first class object
  • Unicode code points larger than 0xffff are not supported (known as surrogate pairs in .NET)

Ideas for implementation

Other