Official chibi-scheme repository
Find a file
2013-06-17 06:45:27 +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 chibi-doc now supports outputting the docs for a single variable. 2013-06-02 12:38:24 +09:00
examples Cleanup up echo server example. 2012-09-16 15:20:09 +09:00
include/chibi Wrapping continuable exceptions in specially tagged exceptions rather than pairs. 2013-06-15 17:47:37 +09:00
lib The guard-like macro in the core language is now called protect. 2013-06-15 18:43:44 +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 Fixing test-memory after sexp.c refactoring and improved stack traces. 2013-06-17 06:45:27 +09:00
tools Factoring print-module-docs and print-module-binding-docs into (chibi doc). 2013-06-04 04:49:49 +09:00
.hgignore Ignoring temp FFI test files. 2013-05-31 23:54:27 +09:00
AUTHORS updating authors 2012-08-26 14:30:46 +09:00
bignum.c Adding a sanity check in sexp_bignum_sqrt. 2013-04-14 05:01:08 +00: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 Wrapping continuable exceptions in specially tagged exceptions rather than pairs. 2013-06-15 17:47:37 +09:00
fedora.spec automatically making sockets non-blocking on accept 2012-05-14 08:37:45 -04:00
gc.c printing debug output on OOM 2012-06-24 14:07:59 -07:00
main.c Removing unintentional disabling of Scheme load in main. 2013-06-16 10:32:44 +09:00
Makefile Fixing test-memory after sexp.c refactoring and improved stack traces. 2013-06-17 06:45:27 +09:00
Makefile.detect Incorporating Alan Watson's TAI time library. 2012-08-17 10:04:37 +09:00
Makefile.libs Generating lib docs in html format. 2013-06-04 06:11:25 +09: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 Wrapping continuable exceptions in specially tagged exceptions rather than pairs. 2013-06-15 17:47:37 +09:00
plan9.c Updating calls to sexp_gc_var to omit ctx. 2013-02-09 09:41:42 +09:00
README Clarifying PREFIX should specified to make in addition to make install. 2013-06-15 12:46:27 +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 Wrapping continuable exceptions in specially tagged exceptions rather than pairs. 2013-06-15 17:47:37 +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 0.6.1 release with several fixes 2012-12-04 20:12:28 +09:00
vm.c Missing vm changes for non-raised FFI exceptions from a7ffc1f42a2b. 2013-05-31 23:29:07 +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 based on an extended subset of the current
draft R7RS Scheme, with support for all libraries.  To get a pure R7RS
repl you can run

  chibi-scheme -xscheme.base

or see the (chibi repl) library for more options.

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