Ikarus Scheme (Bazaar checkout)
Go to file
Abdulaziz Ghuloum 327e6e9371 * Fixed bug 160483: described as "incorrect number of arguments" reported as "not a function"
- The real reason was in the register allocator, where one live
    variable (the memmory size of the bytevector) was not marked live 
    across the call to do-overflow.  When the overflow returned, the 
    value of that variable (which was in the %ebx register) was
    trashed, leading to an incorrect bump in the allocation pointer.
  - Note to self, never blame anything on cache coherency again!
2007-11-06 17:04:27 -05:00
benchmarks Fixes bug 160395: missing import from r6r script reports bogus error. 2007-11-06 01:14:27 -05:00
benchmarks.larceny * updated benchmarks/README since quicksort now works. 2007-11-05 01:57:18 -05:00
doc * Switched order of two compiler passes: specify-representation and 2007-11-05 15:30:42 -05:00
lab * pretty-print is now added to ikarus. 2007-01-13 21:33:04 -05:00
lib * Added SRFI-8 2007-05-11 23:43:36 -04:00
scheme * Fixed bug 160483: described as "incorrect number of arguments" reported as "not a function" 2007-11-06 17:04:27 -05:00
src * Fixed bug 160101: modulo produces "BUG: unsupported" 2007-11-05 02:24:39 -05:00
.bzrignore * Added char-downcase, char-upcase, char-titlecase, and char-foldcase 2007-06-17 17:20:19 +03:00
BUGS * Added sra, fixing the bignum shift bugs. 2007-09-12 23:34:21 -04:00
COPYING * Fixed license issues in COPYING and GPL-3 files. 2007-10-25 17:56:49 -04:00
GPL-3 * Fixed license issues in COPYING and GPL-3 files. 2007-10-25 17:56:49 -04:00
Makefile * Fixed a few typos in docs. 2007-10-31 04:43:22 -04:00
Makefile.am * Fixed license issues in COPYING and GPL-3 files. 2007-10-25 17:56:49 -04:00
Makefile.in * Fixed license issues in COPYING and GPL-3 files. 2007-10-25 17:56:49 -04:00
R6RS-TODO.txt * Added let-syntax and letrec-syntax. 2007-05-22 19:59:30 -04:00
README * Fixed a few typos in docs. 2007-10-31 04:43:22 -04:00
TODO New pretty-printer now handles *pretty-format* semi-decently. 2007-01-15 02:44:45 -05:00
aclocal.m4 * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
compile * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
config.guess * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
config.h * Fixed a few typos in docs. 2007-10-31 04:43:22 -04:00
config.h.in * fixed automake bugs for cygwin. 2007-10-26 00:22:16 -04:00
config.sub major restructuring to support autotools 2007-10-17 19:59:37 -04:00
configure * configure.ac now contains a case for adding -Wl,-E to LDFLAGS 2007-11-01 00:46:04 -04:00
configure.ac * configure.ac now contains a case for adding -Wl,-E to LDFLAGS 2007-11-01 00:46:04 -04:00
depcomp major restructuring to support autotools 2007-10-17 19:59:37 -04:00
install-sh * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
missing * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00
mkinstalldirs * Migrated to automake-1.9 2007-10-25 17:43:40 -04:00

README

Ikarus Scheme is an implementation of the Scheme programming
language.  The preliminary release of Ikarus implements the majority
of the features found in the current standard, the Revised 6 report
on the algorithmic language Scheme including full R6RS library and
script syntax, syntax-case, unicode strings, bytevectors,
user-defined record types, exception handling, conditions, and
enumerations.  Over 80% of the R6RS procedures and keywords are
currently implemented and subsequent releases will proceed towards
brining Ikarus to full R6RS conformance.

The main purpose behind releasing Ikarus early is to give Scheme
programmers the opportunity to experiment with the various new
features that were newly introduced in R6RS.  The most important of
such features is the ability to structure large programs into
libraries; where each library extends the language through
procedural and syntactic abstractions.  Many useful libraries can be
written using the currently supported set of R6RS features including
text processing tools, symbolic logic systems, interpreters and
compilers, and many mathematical and scientific packages.  It is my
hope that this release will encourage the Scheme community to write
and to share their most useful R6RS libraries.