发布于 2015-03-28 00:52:42 | 183 次阅读 | 评论: 0 | 来源: 网友投递
Haskell 函数式编程语言
Haskell是一种标准化的、通用纯函数式编程语言,有非限定性语义和强静态类型。它的命名源自美国逻辑学家Haskell Brooks Curry,他在数学逻辑方面的工作使得函数式编程语言有了广泛的基础。
GHC(Glasgow Haskell compiler)是 Haskell 最顶级最好的编程套件,包括一个优化的编译器,生成各种平台的优秀代码,同时还有个交互式系统,让用户使用起来更简单方便,能使用 Haskell 进行快速的开发。它支持多种语言的扩展,包括并发,异常和其他语言的接口(C 语言等等)。
Haskell GHC 7.10.1 发布,此版本值得关注的改进如下:
* 新增一些语言特性和改进
Applicative is now a superclass of Monad and in the Prelude.
Many prelude combinators have been generalized
Static pointers
* GHC 尝试性支持基于调试的 DWARF
* 完全重写了 `integer-gmp`
* 类型检测插件现在可以扩展类型检测器
* 支持部分类型的签名
* 大量 bug 修复和其他改进
* 支持 'backpack' 特性
* 为所有数据类型自动默认生成 Typeable
修复了 RC3 以来的问题:
- A bug in the call arity analysis that would result in invalid core
was fixed (#10176)
- A bug in the Win32 package causing it to fail to load was fixed (#10165)
- ghc-prim has (correctly) been bumped to version 0.4.0.0, to comply
with the PVP.
- Several libraries have been bumped to their latest available
versions after coordination.
完整发行说明请看这里:
https://downloads.haskell.org/~ghc/7.10.1/docs/html/users_guide/release-7-10-1.html
获取 GHC:
https://www.haskell.org/ghc/
https://ghc.haskell.org/trac/ghc/wiki/Platforms
https://ghc.haskell.org/trac/ghc/wiki/CodeOwners
https://ghc.haskell.org/trac/ghc/wiki/Building
https://ghc.haskell.org/trac/ghc/