Difference between revisions of "Discus"

From HaskellWiki
Jump to navigation Jump to search
m
Line 19: Line 19:
 
* This extended type information is used to allow code-transformation style optimizations in the presence of side effects and mutable objects.
 
* This extended type information is used to allow code-transformation style optimizations in the presence of side effects and mutable objects.
 
* Compiles via standard C99, so is highly portable.
 
* Compiles via standard C99, so is highly portable.
* Tested under linux-{x86, x86_64} and darwin-{x86, x86_64} (tested on 10.5.4)
+
* Tested on linux-{x86, x86_64} and darwin-{x86, x86_64} (tested on 10.5.4)
 
* Is in a usable alpha state.
 
* Is in a usable alpha state.
   

Revision as of 01:03, 4 July 2008

DDC

Disciple is an explicitly lazy dialect of Haskell which supports destructive update, computational effects, type directed field projections and allied functional goodness.

Disciple vs Haskell

Some example code showing most of the extensions, and its output, core and C-code

The Disciplined Disciple Compiler

  • Uses a typed core language which includes effect, closure, region and mutability information.
  • This extended type information is used to allow code-transformation style optimizations in the presence of side effects and mutable objects.
  • Compiles via standard C99, so is highly portable.
  • Tested on linux-{x86, x86_64} and darwin-{x86, x86_64} (tested on 10.5.4)
  • Is in a usable alpha state.

Get the Source

Get the latest stable release (alpha 1.1) with darcs:

    darcs get http://code.haskell.org/ddc/ddc-alpha

For thrill-seekers, the development branch (which usually builds ok) is:

    darcs get http://code.haskell.org/ddc/ddc-head 

Alternatively, download the source tar-ball from Google code

   http://code.google.com/p/disciple/downloads

Check the ReleaseNotes and INSTALL and HACKING instructions.

Contact the Maintainers