My favorites | Sign in
Project Logo
                
Show all Featured downloads:
ischeme-0.10.tar.gz
Feeds:
People details
Project owners:
  blstuart

This project is for a scheme interpreter and any applications written in scheme. This is basically a scheme interpreter that meets the r4rs "standard" (almost) with aspirations to meet the r5rs standard. The last part of r5rs that will likely be implemented (if ever) is the macro support. Also, unlike r4rs and r5rs, but like r6rs, this interpreter is case-sensitive. Thus (eq? 'abc 'AbC) => #f.

Current Status

The implementation is not the cleanest thing in the world as it's the largest thing I've ever written in Limbo. But it seems to work pretty well for a relatively quick hack. It currently totals about 4000 lines of Limbo code divided into 4 modules:

  1. cell.b - core cell, pair, and environment routines
  2. sform.b - functions that implement special forms
  3. builtin.b - functions that implement built-in procedures
  4. scheme.b - top-level REPL functions

Some procedures are implemented in scheme, rather than directly as built-in functions. They are located in /lib/scheme/library.scm.









Hosted by Google Code