Ikarus Scheme (Bazaar checkout)
Go to file
Abdulaziz Ghuloum 2ad6d9bddf strings containing non-ascii characters are written using either
hex escaping or as-is depending on the value of the print-unicode
parameter.
2008-08-10 11:03:09 -07:00
benchmarks fixed gc bug in 64-bit mode along with another 64-bit bug in the 2008-07-21 22:07:31 -07:00
benchmarks.larceny * libraries are now expanded to a special library-letrec* form. 2007-11-17 09:53:22 -05:00
doc Modified Makefile.am so that the pdf is not rebuilt automatically. 2008-08-04 08:30:46 -07:00
lab accept and accept-nonblocking now set the port-id to a string 2008-04-11 07:01:27 -04:00
lib fixed gc bug in 64-bit mode along with another 64-bit bug in the 2008-07-21 22:07:31 -07:00
other-libs moved match.ss and pregexp.ss to the lib directory and modified 2007-12-19 17:39:26 -05:00
scheme strings containing non-ascii characters are written using either 2008-08-10 11:03:09 -07:00
src fixed a bug that might cause ikarus to crash in directory-list. 2008-08-10 10:37:39 -07:00
.bzrignore
ACKNOWLEDGMENTS * Added a dedications file. 2007-11-19 19:04:10 -05:00
BUGS
COPYING
DEDICATIONS * Added a dedications file. 2007-11-19 19:04:10 -05:00
GPL-3
HOWTO-Contribute added: HOWTO-Contribute 2007-12-01 21:38:16 -05:00
Makefile.am renamed the extras directory to be lib. 2007-12-01 01:21:18 -05:00
Makefile.in Weeded out gcc warnings and added -Wall as a configure flag. 2007-12-10 15:02:25 -05:00
README
aclocal.m4
c32 Added a 64-bit bootfile and modified the configure script to not add 2008-07-20 14:09:04 -07:00
c64 fixed gc bug in 64-bit mode along with another 64-bit bug in the 2008-07-21 22:07:31 -07:00
compile
config.guess
config.h.in sigaltstack is not used now if the OS does not provide it. 2008-01-07 19:04:46 -05:00
config.sub
configure Added a 64-bit bootfile and modified the configure script to not add 2008-07-20 14:09:04 -07:00
configure.ac Added a 64-bit bootfile and modified the configure script to not add 2008-07-20 14:09:04 -07:00
depcomp
install-sh
missing
mkinstalldirs

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.