Actions

Difference between revisions of "Main Page"

From Gambit wiki

(Updated to v4.2.3)
(Updated to v4.2.4)
Line 6: Line 6:
 
resources are collected and where users can exchange information related to Gambit.
 
resources are collected and where users can exchange information related to Gambit.
  
'''Download latest release (v4.2.3):'''
+
'''Download latest release (v4.2.4):'''
[http://www.iro.umontreal.ca/~gambit/download/gambit/v4.2/source/gambc-v4_2_3.tgz Sources],
+
[http://www.iro.umontreal.ca/~gambit/download/gambit/v4.2/source/gambc-v4_2_4.tgz Sources],
[http://www.iro.umontreal.ca/~gambit/download/gambit/v4.2/prebuilt/gambc-v4_2_3-macosx-universal.dmg Universal Mac OS X installer],
+
[http://www.iro.umontreal.ca/~gambit/download/gambit/v4.2/prebuilt/gambc-v4_2_4-macosx-universal.dmg Universal Mac OS X installer],
[http://www.iro.umontreal.ca/~gambit/download/gambit/v4.2/prebuilt/gambc-v4_2_3-windows-mingw.exe Windows installer]
+
[http://www.iro.umontreal.ca/~gambit/download/gambit/v4.2/prebuilt/gambc-v4_2_4-windows-mingw.exe Windows installer]
 
(for other releases see the [[distributions]]).
 
(for other releases see the [[distributions]]).
  

Revision as of 23:24, 12 March 2008

The Gambit Scheme system is a complete, portable, efficient and reliable implementation of the Scheme programming language.

This web site is intended for users of the Gambit Scheme system. It is a place where various resources are collected and where users can exchange information related to Gambit.

Download latest release (v4.2.4): Sources, Universal Mac OS X installer, Windows installer (for other releases see the distributions).

What's Gambit?

Gambit consists of two main programs: gsi, the Gambit Scheme interpreter, and gsc, the Gambit Scheme compiler. The interpreter is designed to provide a nice debugging environment whereas the compiler targets fast execution. The compiler can produce standalone executables or compiled modules which can be loaded at run time. Interpreted code and compiled code can be freely mixed.

Gambit-C is a version of the Gambit programming system in which the compiler generates portable C code. The main features of Gambit-C are:

  • Conformance. The Gambit-C system conforms to the R4RS, R5RS and IEEE Scheme standards and implements all optional features. Tail calls and first class continuations conform to the Scheme semantics. The full numeric tower is implemented, including: arbitrary precision integers (bignums), rationals, inexact reals (floating point numbers), and complex numbers. Several extensions to Scheme are provided, including: lightweight threads, a foreign-function interface (FFI), and extended I/O capabilities (Unicode, networking, subprocesses, ...).
  • Portability. Because the system is mostly written in Scheme and the compiler generates portable C code, it is easy to port the system as well as programs compiled with it to any platform with a decent C or C++ compiler. There is no reliance on a particular C compiler, although the system can take advantage of some gcc specific constructs. The C code generated is oblivious to the endianness and word size of the target environment (32 and 64 bit architectures are currently supported).
  • Performance. The compiler includes several powerful program transformations such as user procedure inlining, partial-evaluation, and lambda-lifting. With appropriate declarations in the source code the executable programs generated by the compiler run roughly as fast as equivalent C programs. Programs containing no declarations are also optimized without compromising the Scheme semantics by speculative inlining predefined procedures (see the benchmarks page for a comparison with other Scheme implementations and other languages). Thanks to an efficient implementation of continuations, the thread system is very efficient and can support millions of concurrent threads. The bignum library uses sophisticated algorithms that are in some cases asymptotically faster than those of GMP (GNU Multiple Precision Arithmetic Library).
  • Reliability. Stable releases typically have very few bugs. Bug tracking is done with bugzilla. Gambit-C has been used to develop large-scale real-world software in academic and commercial settings.

Getting Gambit

Gambit is available as prebuilt and source code distributions. There are prebuilt distributions for Mac OS X, Microsoft Windows, and other operating systems. The source code distributions must be compiled with a C or C++ compiler. The latest sources are available in the source code repository. It can be accessed using the Mercurial distributed version control system.

Documentation

Documentation is available.

Support

Come chat with us in the #gambit channel on Freenode.

Contributing

Learn how to contribute to Gambit's development.

Reporting bugs

Gambit bugzilla

Source repository

Gambit Mercurial repo

License

Gambit is Copyright © 1994-2008 by Marc Feeley. It is released under a dual LGPL and Apache 2 license. You can choose whichever license you prefer: