Difference between revisions of "First-class module"

From HaskellWiki
Jump to navigation Jump to search
m (Splitting the page into two titled sections (,,Haskell proposal'' vs ,,Other examples''))
m (typographic corrections)
Line 3: Line 3:
 
== Haskell proposals ==
 
== Haskell proposals ==
   
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.
+
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 ==
 
== Other examples ==
   
[http://www.cs.chalmers.se/~augustss/cayenne/index.html Cayene] is a programming laguage influenced by Haskell, constructive type theory.
+
[http://www.cs.chalmers.se/~augustss/cayenne/index.html Cayene] is a programming laguage influenced by Haskell and 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.
+
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 10:26, 26 March 2006

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

Cayene is a programming laguage 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.