Official chibi-scheme repository
Find a file
2012-02-02 23:16:16 +09:00
benchmarks/shootout Fix off-by-one error in command-line argument handling. 2011-12-31 09:03:21 +00:00
contrib Adding bash_completion support for chibi-scheme. 2011-12-06 21:53:58 +09:00
doc Documenting some utilities, notably sexp_symbol_to_string which is the only public interface to symbols. 2012-01-22 14:10:43 +09:00
examples Followup to previous patch - updating scripts to import (scheme), and tests to run with -xscheme. 2011-11-30 09:43:27 +09:00
include/chibi explicitly disabling flonums and leaving ratios and complex unspecified disables them as well 2012-01-25 21:38:10 +09:00
lib renaming symbol accessors to lsymbol, and clarifying the use of SEXP_USE_SAFE_ACCESSORS 2012-01-22 13:53:27 +09:00
opt Flonum/ratio comparison fix from pod. 2012-01-03 11:23:47 +09:00
tests various srfi-1 fixes 2012-01-22 11:38:49 +09:00
tools Need to set return type for zero-argument constructors. 2012-01-15 21:28:41 +09:00
.hgignore ignoring additional files 2011-11-10 05:35:03 +09:00
AUTHORS updating docs for new release 2011-11-24 10:49:55 +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 Now that bugs are fixed, re-using same stack for eval. Restores stack traces. 2012-02-02 23:16:16 +09:00
fedora.spec fixing header alignment in disasm 2011-11-01 22:51:09 +09:00
gc.c Refactoring __attribute__((unused)). 2012-01-05 14:19:30 +09:00
main.c Giving a more helpful error message when not all I/O ports are available in the repl. 2012-01-02 16:33:59 +09:00
Makefile Add tests from SRFI-1 examples. 2012-01-19 16:11:12 +00:00
mkfile Simplifying Plan9 CPPFLAGS. 2011-12-11 21:13:31 +09:00
opcodes.c adding print-stack-trace primitive 2012-01-22 10:54:24 +09:00
README updating docs for new release 2011-11-24 10:49:55 +09:00
RELEASE preparing for 0.5 release 2011-11-04 22:49:58 +09:00
sexp.c renaming symbol accessors to lsymbol, and clarifying the use of SEXP_USE_SAFE_ACCESSORS 2012-01-22 13:53:27 +09:00
TODO Updating TODO. 2011-11-14 08:19:17 +09:00
VERSION Updating version. 2011-12-18 16:10:45 +09:00
vm.c Now that bugs are fixed, re-using same stack for eval. Restores stack traces. 2012-02-02 23:16:16 +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 an extended subset of the current draft R7RS
Scheme, with support for all libraries.  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 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".