Official chibi-scheme repository
Find a file
2014-01-14 22:14:38 +09:00
benchmarks SRFI-22 now requires the -r (run) option. 2012-11-11 16:17:26 +09:00
build-lib/chibi/char-set Renaming the (scheme) library to (chibi). Leaving (scheme) as an alias for backwards compatibility. 2012-10-14 22:11:47 +09:00
contrib automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
data adding ascii and full unicode char-set libraries based on isets 2012-06-17 19:36:17 +09:00
doc Adding the -R<module> option to run "main" procedures directly from modules, 2013-10-04 12:04:50 +09:00
examples Adding #! line to echo-server.scm. 2013-09-28 13:05:23 +09:00
include/chibi Hygiene change. Removing syntactic closure flattening to 2014-01-12 19:29:11 +09:00
lib Using begin:/end: to better distinguish app hooks from command names. 2014-01-14 22:14:38 +09:00
opt Build fixes for plan9. Moving individual object files out of opt/ since plan9 mkfiles have issues with these. 2012-08-16 16:04:02 +09:00
tests Adding nested guard test from Per Bothner. 2014-01-09 10:33:08 -05:00
tools Adding support for single char named char-sets by prefixing with ":". 2013-10-29 06:48:05 +09:00
.hgignore Ignoring temp FFI test files. 2013-05-31 23:54:27 +09:00
AUTHORS Updating AUTHORS. 2013-07-30 21:18:53 +09:00
bignum.c Division by zero test for non-normalized zero bignums in bignum quotient/remainder. 2014-01-05 08:52:50 -05:00
chibi-scheme.vcproj automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
COPYING Updating version for release. 2012-11-11 17:39:09 +09:00
eval.c Hygiene change. Removing syntactic closure flattening to 2014-01-12 19:29:11 +09:00
fedora.spec automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
gc.c Reverting patch from Peter Michaux. 2013-09-29 13:26:59 +09:00
main.c Hygiene change. Removing syntactic closure flattening to 2014-01-12 19:29:11 +09:00
Makefile Removing build warning by splitting flags for objects to be used 2014-01-05 12:58:36 -05:00
Makefile.detect Removing build warning by splitting flags for objects to be used 2014-01-05 12:58:36 -05:00
Makefile.libs Removing build warning by splitting flags for objects to be used 2014-01-05 12:58:36 -05:00
mkfile Build fixes for plan9. Moving individual object files out of opt/ since plan9 mkfiles have issues with these. 2012-08-16 16:04:02 +09:00
opcodes.c Making sexp_make_primitive_env available from Scheme. 2013-09-29 11:05:54 +09:00
plan9.c Updating calls to sexp_gc_var to omit ctx. 2013-02-09 09:41:42 +09:00
README The big switch to (scheme base) as the default interaction-environment. 2013-09-30 10:53:21 +09:00
README.libs makefile changes to allow linking external libs for 3rd party code 2012-07-09 20:28:18 +09:00
RELEASE Updating version for release. 2012-11-11 17:39:09 +09:00
sexp.c Prefer lowercase for hex digits. 2013-12-27 13:44:38 +09:00
simplify.c Disabling some simplifications that interact badly with GC. 2013-05-29 21:01:41 +09:00
TODO automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
VERSION Pre-release version. 2013-12-30 12:21:22 +09:00
vm.c Hygiene change. Removing syntactic closure flattening to 2014-01-12 19:29:11 +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 the R7RS (scheme base) library.

Support for additional languages such as JavaScript, Go, Lua and Bash
are planned for 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 install

to install the binaries and libraries.  You can optionally specify a
PREFIX for the installation directory:

  make PREFIX=/path/to/install/
  sudo make PREFIX=/path/to/install/ install

By default files are installed in /usr/local.

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".