Official chibi-scheme repository
Find a file
2011-07-04 22:04:09 +09:00
benchmarks/shootout adding interface to bytecode-literals 2010-12-05 16:53:38 -08:00
doc fixing sexp_load example 2011-06-30 09:12:14 +09:00
include/chibi trying out tail jumps instead of using the tail-call opcode where possible 2011-07-04 02:22:18 +09:00
lib adding cast for safety 2011-07-04 22:04:09 +09:00
opt trying out tail jumps instead of using the tail-call opcode where possible 2011-07-04 02:22:18 +09:00
tests fixing bug in mixed fixnum/flonum subtraction 2011-06-30 09:17:47 +09:00
tools changing SRFI-1 any to return the result of the pred 2011-06-29 23:37:23 +09:00
.hgignore ignoring generated docs 2011-06-13 20:50:11 +09:00
AUTHORS Updating AUTHORS (late for the release, oops). 2011-05-28 15:34:25 +09: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 trying out tail jumps instead of using the tail-call opcode where possible 2011-07-04 02:22:18 +09:00
fedora.spec adding fedora.spec from rajesh 2011-05-28 15:34:08 +09:00
gc.c fixing GLOBAL_HEAP build 2011-05-26 08:16:50 +09:00
main.c forgot conditional includes for no case-folding 2011-05-24 07:29:30 +09:00
Makefile adding simplistic procedure-level profiler 2011-07-03 20:33:50 +09:00
mkfile updating mkfile 2011-05-28 15:27:40 +09:00
opcodes.c adding simple VM-level profiler 2011-07-03 21:00:11 +09:00
README Renaming tools, adding -c option to automatically compile with chibi-ffi. 2011-04-07 23:48:46 +09:00
RELEASE updating release name 2011-05-23 03:32:19 -07:00
sexp.c chmod 2011-05-29 18:47:00 +09: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 trying out tail jumps instead of using the tail-call opcode where possible 2011-07-04 02:22:18 +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".