タグ

ブックマーク / www.haskell.org (1)

  • Learn Haskell in 10 minutes - HaskellWiki

    Overview Haskell is a functional (that is, everything is done with function calls), statically, implicitly typed (types are checked by the compiler, but you don't have to declare them), lazy (nothing is done until it needs to be) language. Its closest popular relative is probably the ML family of languages (which are not, however, lazy languages). The most common Haskell compiler is GHC. You can d

    skelton_boy
    skelton_boy 2007/07/19
    Haskell is a functional (that is, everything is done with function calls), statically, implicitly typed (types are checked by the compiler, but you don't have to declare them), lazy (nothing is done until it needs to be) language. Its closest popular relative is probably the ML family of languages.
  • 1