Official chibi-scheme repository
Find a file
2011-05-21 22:46:06 -07:00
benchmarks/shootout adding interface to bytecode-literals 2010-12-05 16:53:38 -08:00
doc Parsing literal docs for FFI files, generating docs for all core modules (mostly stubs). 2011-05-18 00:52:54 -07:00
include/chibi fixing syntactic-closure free-variable references for wrapped expressions 2011-05-21 16:42:02 -07:00
lib Removing uncessary setters. 2011-05-21 22:46:06 -07:00
opt fixing conflicts in chibi-scheme-static build 2011-05-18 21:50:48 -07:00
tests most tests can now be run without modules enabled 2011-04-26 23:19:23 +09:00
tools Parsing literal docs for FFI files, generating docs for all core modules (mostly stubs). 2011-05-18 00:52:54 -07:00
.hgignore adding interface to bytecode-literals 2010-12-05 16:53:38 -08:00
AUTHORS adding interface to bytecode-literals 2010-12-05 16:53:38 -08:00
chibi-scheme.vcproj adding interface to bytecode-literals 2010-12-05 16:53:38 -08:00
COPYING adding interface to bytecode-literals 2010-12-05 16:53:38 -08:00
eval.c fixing syntactic-closure free-variable references for wrapped expressions 2011-05-21 16:42:02 -07:00
gc.c removing accidentally committed debug code 2011-04-03 22:25:48 +09:00
main.c conditionally toggling isalpha/isxdigit between function or macro depending on platform 2011-05-19 23:32:23 -07:00
Makefile Parsing literal docs for FFI files, generating docs for all core modules (mostly stubs). 2011-05-18 00:52:54 -07:00
mkfile plan9 API updates 2011-04-08 02:19:54 +09:00
opcodes.c fixing syntactic-closure free-variable references for wrapped expressions 2011-05-21 16:42:02 -07:00
README Renaming tools, adding -c option to automatically compile with chibi-ffi. 2011-04-07 23:48:46 +09:00
RELEASE adding interface to bytecode-literals 2010-12-05 16:53:38 -08:00
sexp.c conditionally toggling isalpha/isxdigit between function or macro depending on platform 2011-05-19 23:32:23 -07:00
TODO closing thread-local params 2010-12-06 21:53:46 -08:00
VERSION Renaming tools, adding -c option to automatically compile with chibi-ffi. 2011-04-07 23:48:46 +09:00
vm.c adding optional strict top-level matching for syntax-rules literals 2011-04-25 23:29:30 +09:00

                             Chibi-Scheme
                            --------------
                                   
    Minimal Scheme Implementation for use as an Extension Language

              http://synthcode.com/wiki/chibi-scheme/

Chibi-Scheme is a very small library intended for use as an extension
and scripting language in C programs.  In addition to support for
lightweight VM-based threads, each VM itself runs in an isolated heap
allowing multiple VMs to run simultaneously in different OS threads.

The default language is R5RS Scheme with support for additional
languages such as JavaScript to be provided in future releases.
Scheme is chosen as a substrate because its first class continuations
and guaranteed tail-call optimization makes implementing other
languages easy.

To build on most platforms just run "make".  This will provide a
shared library "libchibi-scheme", as well as a sample "chibi-scheme"
command-line repl.

For more detailed documentation, run "make doc" and see the generated
"doc/chibi.html".