Ikarus Scheme (Bazaar checkout)
Go to file
Abdulaziz Ghuloum 45346ef865 - Added cp0! including:
- (optimize-level [0,1,2])  and  ikarus -O[0,1,2]
       where -O0 = no optimizations
             -O1 = using old optimizer
             -O2 = using the new cp0 optimizer
       defaults to -O1 for now.
   - (cp0-size-limit n) which is the limit of the residual size for
     each inlining attempt
   - (cp0-effort-limit n) which is the limit on the effort expended 
     for each inlining attempt
   
- Rewrote the syntax-match macro to make use of the same technology
  used in syntax-case itself resulting in reduced code size.

- Added (system-value <symbol>) which returns the system value.
  E.g., (system-value 'car) => #<procedure car>
  This is pretty much the same as 
    (eval <symbol> (environment '(ikarus)))
  except that it does not involve compiling the expression or 
  consulting the library/expander systems.

- Fixed the fasl loader to make it understand complex numbers.
2008-06-28 02:25:44 -07:00
benchmarks - Added cp0! including: 2008-06-28 02:25:44 -07:00
benchmarks.larceny
doc This is the 0.0.3 release. 2008-02-02 23:08:58 -05:00
lab accept and accept-nonblocking now set the port-id to a string 2008-04-11 07:01:27 -04:00
lib Fixes more of bug 180170: (log (expt 2 1024)) now works. 2008-01-05 21:02:52 -05:00
other-libs moved match.ss and pregexp.ss to the lib directory and modified 2007-12-19 17:39:26 -05:00
scheme - Added cp0! including: 2008-06-28 02:25:44 -07:00
src - Added cp0! including: 2008-06-28 02:25:44 -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 Passing 548 tests in 64-bit mode. 2008-04-08 03:57:13 -04:00
c64 Passing 548 tests in 64-bit mode. 2008-04-08 03:57:13 -04: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 This is the 0.0.3 release. 2008-02-02 23:08:58 -05:00
configure.32.ac Passing 548 tests in 64-bit mode. 2008-04-08 03:57:13 -04:00
configure.64.ac Passing 548 tests in 64-bit mode. 2008-04-08 03:57:13 -04:00
configure.ac This is the 0.0.3 release. 2008-02-02 23:08:58 -05: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.