Difference between revisions of "First-class module"

From HaskellWiki
Jump to navigation Jump to search
(Creating the page with the description of concepts which forced me to create this page: Cayene language from Dependent types and Mark Shields & Simon Peyton Jones's article from Future)
 
(→‎Other examples: Updated the link to Cayenne)
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
  +
__TOC__
Mark Shields and Simon Peyton Jones [http://research.microsoft.com/Users/simonpj/Papers/first-class-modules/ First-class Modules for Haskell] discusses a lot of extension proposals integrated in a coherent design.
 
   
  +
== Haskell proposals ==
[http://www.cs.chalmers.se/~augustss/cayenne/index.html Cayene] is a programming laguage influenced by Haskell, constructive type theory.
 
  +
Bacause it has also [[Dependent type]]s, it can leverage them so that it is not forced to have a separate module language and a core language.
 
 
Mark Shields and Simon Peyton Jones's [http://research.microsoft.com/Users/simonpj/Papers/first-class-modules/ First-class Modules for Haskell] discusses a lot of extension proposals integrated in a coherent design.
  +
  +
== Other examples ==
  +
 
[http://www.augustsson.net/Darcs/Cayenne/html/ Cayenne] is a programming language influenced by Haskell and constructive type theory.
 
Because it has also [[Dependent type]]s, it can leverage them so that it is not forced to have a separate module language and a core language.
   
 
[[Category:Proposals]]
 
[[Category:Proposals]]

Revision as of 11:53, 9 August 2012

Haskell proposals

Mark Shields and Simon Peyton Jones's First-class Modules for Haskell discusses a lot of extension proposals integrated in a coherent design.

Other examples

Cayenne is a programming language influenced by Haskell and constructive type theory. Because it has also Dependent types, it can leverage them so that it is not forced to have a separate module language and a core language.