Ikarus Scheme (Bazaar checkout)
Go to file
Abdulaziz Ghuloum 4bb7e170b5 Some procedures (like console-output-port) did not get names when
printed (instead, they were just #<procedure>).  Names for
procedures that are defined like
  (define foo
    (let ([something ---]) 
      (lamdba () ---)))
now works.
2008-06-18 22:47:56 -07:00
benchmarks Added bitwise-and primop. 2008-01-19 15:44:38 -05:00
benchmarks.larceny * libraries are now expanded to a special library-letrec* form. 2007-11-17 09:53:22 -05:00
doc
lab accept and accept-nonblocking now set the port-id to a string 2008-04-11 07:01:27 -04:00
lib
other-libs
scheme Some procedures (like console-output-port) did not get names when 2008-06-18 22:47:56 -07:00
src (waitpid -1 #f) now returns #f if no child has died yet. 2008-06-13 22:11:51 -07:00
.bzrignore
ACKNOWLEDGMENTS
BUGS
COPYING
DEDICATIONS
GPL-3
HOWTO-Contribute
Makefile.am
Makefile.in
README
aclocal.m4
c32
c64
compile
config.guess
config.h.in
config.sub
configure
configure.32.ac
configure.64.ac
configure.ac
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.