Official chibi-scheme repository
Find a file
2011-11-14 17:10:57 +09:00
benchmarks/shootout fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
doc Updating docs. 2011-11-14 10:33:42 +09:00
include/chibi explicitly casting to unsigned char when using isalpha/digit/etc. 2011-11-14 15:27:02 +09:00
lib minor bugfixes, moving string-map & string-for-each to extras.scm 2011-11-14 17:10:57 +09:00
opt Removing uses of sexp_api_params and sexp_api_pass which were ugly and no longer supported anyway. 2011-11-07 01:30:55 +09:00
tests Adding additional build tests. 2011-11-14 09:18:15 +09:00
tools Fixing static libs and immutable strings builds. 2011-11-14 09:17:53 +09:00
.hgignore ignoring additional files 2011-11-10 05:35:03 +09:00
AUTHORS fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
chibi-scheme.vcproj fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
COPYING fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
eval.c Fixing static libs and immutable strings builds. 2011-11-14 09:17:53 +09:00
fedora.spec fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
gc.c separating finalizing from sweeping, delaying finalizing DLs until after other values 2011-11-08 22:44:31 +09:00
main.c explicitly casting to unsigned char when using isalpha/digit/etc. 2011-11-14 15:27:02 +09:00
Makefile Updating docs. 2011-11-14 10:33:42 +09:00
mkfile s/sexp_default_module_dir/sexp_default_module_path/ for plan9 mkfile 2011-11-06 15:12:05 +09:00
opcodes.c Fixing static libs and immutable strings builds. 2011-11-14 09:17:53 +09:00
README Updating README. 2011-11-14 08:08:25 +09:00
RELEASE preparing for 0.5 release 2011-11-04 22:49:58 +09:00
sexp.c explicitly casting to unsigned char when using isalpha/digit/etc. 2011-11-14 15:27:02 +09:00
TODO Updating TODO. 2011-11-14 08:19:17 +09:00
VERSION preparing for 0.5 release 2011-11-04 22:49:58 +09:00
vm.c Fixing static libs and immutable strings builds. 2011-11-14 09:17:53 +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 R7RS 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 && make test".  This will
provide a shared library "libchibi-scheme", as well as a sample
"chibi-scheme" command-line repl.  You can then run

  sudo make PREFIX=/usr/local install

to install the binaries, leaving out the PREFIX for the default
/usr/local or specifying an alternate install location.  If you want
to try out chibi-scheme without installing, be sure to set
LD_LIBRARY_PATH so it can find the shared libraries.

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