Official chibi-scheme repository
Find a file
2011-11-06 21:15:01 +09:00
benchmarks/shootout fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
doc Adding preservatives. 2011-11-04 22:42:17 +09:00
include/chibi abstracting to use sexp_ versions of isdigit, tolower, toupper consistently, and casting to avoid warnings in cygwin 2011-11-06 14:37:59 +09:00
lib Removing old *meta-env* hack - `import' is now copied from (meta) and runs directly without eval. 2011-11-06 21:09:03 +09:00
opt abstracting to use sexp_ versions of isdigit, tolower, toupper consistently, and casting to avoid warnings in cygwin 2011-11-06 14:37:59 +09:00
tests Removing bash-ism. 2011-11-06 16:06:59 +09:00
tools Adding define-c-int-type to the FFI and using it for socklen_t. 2011-11-04 22:17:26 +09:00
.hgignore fixing header alignment in disasm 2011-11-01 22:51:09 +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 Removing old *meta-env* hack - `import' is now copied from (meta) and runs directly without eval. 2011-11-06 21:09:03 +09:00
fedora.spec fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
gc.c Adding preservatives. 2011-11-04 22:42:17 +09:00
main.c Adding "-x module" option for alternate languages which currently just does an import-only. 2011-11-06 15:39:31 +09:00
Makefile cleaner now removes old .o files in the lib/ dir 2011-11-06 21:15:01 +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 header alignment in disasm 2011-11-01 22:51:09 +09:00
README fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
RELEASE preparing for 0.5 release 2011-11-04 22:49:58 +09:00
sexp.c abstracting to use sexp_ versions of isdigit, tolower, toupper consistently, and casting to avoid warnings in cygwin 2011-11-06 14:37:59 +09:00
TODO fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
VERSION preparing for 0.5 release 2011-11-04 22:49:58 +09:00
vm.c Using ferror instead of setting errno. 2011-11-06 15:01:14 +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".