Haskell (programming language)

Haskell /ˈhæskəl/[28] is a general-purpose, statically typed, purely functional programming language with type inference and lazy evaluation.[29][30] Developed to be suitable for teaching, research and industrial application, Haskell has pioneered a number of advanced programming language features such as type classes, which enable type-safe operator overloading. Haskell's main implementation is the Glasgow Haskell Compiler (GHC). It is named after logician Haskell Curry.[2]

Haskell
The Haskell logo, generated by Haskell code.[1]
ParadigmFunctional
Designed byLennart Augustsson, Dave Barton, Brian Boutel, Warren Burton, Joseph Fasel, Kevin Hammond, Ralf Hinze, Paul Hudak, John Hughes, Thomas Johnsson, Mark Jones, Simon Peyton Jones, John Launchbury, Erik Meijer, John Peterson, Alastair Reid, Colin Runciman, Philip Wadler
First appeared1990 (1990)[2]
Stable release
Haskell 2010[3] / July 2010 (2010-07)
Preview release
Haskell 2020 announced[4]
Typing disciplineInferred, static, strong
OSCross-platform
Filename extensions.hs, .lhs
Websitewww.haskell.org
Major implementations
GHC, Hugs, NHC, JHC, Yhc, UHC
Dialects
Helium, Gofer
Influenced by
Clean,[5] FP,[5] Gofer,[5] Hope and Hope+,[5] Id,[5] ISWIM,[5] KRC,[5] Lisp,[5] Miranda,[5] ML and Standard ML,[5] Orwell, SASL,[5] Scheme,[5] SISAL[5]
Influenced
Agda,[6] Bluespec,[7] C++11/Concepts,[8] C#/LINQ,[9][10][11][12] CAL, Cayenne,[9] Clean,[9] Clojure,[13] CoffeeScript,[14] Curry,[9] Elm, Epigram, Escher,[15] F#,[16] Frege,[17] Hack,[18] Idris,[19] Isabelle,[9] Java/Generics,[9] LiveScript,[20] Mercury,[9] Ωmega, PureScript,[21] Python,[9][22] Raku,[23] Rust,[24] Scala,[9][25] Swift,[26] Timber,[27] Visual Basic 9.0[9][10]

Haskell's semantics are historically based on those of the Miranda programming language, which served to focus the efforts of the initial Haskell working group.[31] The last formal specification of the language was made in July 2010, while the development of GHC's implementation has continued to extend Haskell via language extensions. The next formal specification is planned for 2020.[4]

Haskell is used in academia[32][33] and industry.[34] As of September 2019, Haskell was the 23rd most popular programming language in terms of Google searches[35] for tutorials and made up less than 1% of active users on the GitHub source code repository.[36]

History

Following the release of Miranda by Research Software Ltd. in 1985, interest in lazy functional languages grew. By 1987, more than a dozen non-strict, purely functional programming languages existed. Miranda was the most widely used, but it was proprietary software. At the conference on Functional Programming Languages and Computer Architecture (FPCA '87) in Portland, Oregon, there was a strong consensus that a committee be formed to define an open standard for such languages. The committee's purpose was to consolidate existing functional languages into a common one to serve as a basis for future research in functional-language design.[37]

Haskell 1.0 to 1.4

Type classes, which enable type-safe operator overloading, were first proposed by Philip Wadler and Stephen Blott for Standard ML but were first implemented in Haskell between 1987 and version 1.0.[38][39]

The first version of Haskell ("Haskell 1.0") was defined in 1990.[2] The committee's efforts resulted in a series of language definitions (1.0, 1.1, 1.2, 1.3, 1.4).

Type classes originated in Haskell

Haskell 98

In late 1997, the series culminated in Haskell 98, intended to specify a stable, minimal, portable version of the language and an accompanying standard library for teaching, and as a base for future extensions. The committee expressly welcomed creating extensions and variants of Haskell 98 via adding and incorporating experimental features.[37]

In February 1999, the Haskell 98 language standard was originally published as The Haskell 98 Report.[37] In January 2003, a revised version was published as Haskell 98 Language and Libraries: The Revised Report.[30] The language continues to evolve rapidly, with the Glasgow Haskell Compiler (GHC) implementation representing the current de facto standard.[40]

Haskell 2010

Haskell supports both sum types and product types

In early 2006, the process of defining a successor to the Haskell 98 standard, informally named Haskell Prime, began.[41] This was intended to be an ongoing incremental process to revise the language definition, producing a new revision up to once per year. The first revision, named Haskell 2010, was announced in November 2009[3] and published in July 2010.

Haskell 2010 is an incremental update to the language, mostly incorporating several well-used and uncontroversial features previously enabled via compiler-specific flags.

  • Hierarchical module names. Module names are allowed to consist of dot-separated sequences of capitalised identifiers, rather than only one such identifier. This lets modules be named in a hierarchical manner (e.g., Data.List instead of List), although technically modules are still in a single monolithic namespace. This extension was specified in an addendum to Haskell 98 and was in practice universally used.
  • The foreign function interface (FFI) allows bindings to other programming languages. Only bindings to C are specified in the Report, but the design allows for other language bindings. To support this, data type declarations were permitted to contain no constructors, enabling robust nonce types for foreign data that could not be constructed in Haskell. This extension was also previously specified in an Addendum to the Haskell 98 Report and widely used.
  • So-called n+k patterns (definitions of the form fact (n+1) = (n+1) * fact n) were no longer allowed. This syntactic sugar had misleading semantics, in which the code looked like it used the (+) operator, but in fact desugared to code using (-) and (>=).
  • The rules of type inference were relaxed to allow more programs to type check.
  • Some syntax issues (changes in the formal grammar) were fixed: pattern guards were added, allowing pattern matching within guards; resolution of operator fixity was specified in a simpler way that reflected actual practice; an edge case in the interaction of the language's lexical syntax of operators and comments was addressed; and the interaction of do-notation and if-then-else was tweaked to eliminate unexpected syntax errors.
  • The LANGUAGE pragma was specified. By 2010 dozens of extensions to the language were in wide use, and GHC (among other compilers) provided the LANGUAGE pragma to specify individual extensions with a list of identifiers. Haskell 2010 compilers are required to support the Haskell2010 extension, and are encouraged to support several others which correspond to extensions added in Haskell 2010.
  • The most significant language changes represented in the diagram: History of Haskell.

Features

Haskell features lazy evaluation of expressions, that is, 'call by need'

Haskell features lazy evaluation, lambda expressions, pattern matching, list comprehension, type classes and type polymorphism. It is a purely functional language, which means that functions generally have no side effects. A distinct construct exists to represent side effects, orthogonal to the type of functions. A pure function can return a side effect that is subsequently executed, modeling the impure functions of other languages.

Haskell has a strong, static type system based on Hindley–Milner type inference. Its principal innovation in this area is type classes, originally conceived as a principled way to add overloading to the language,[42] but since finding many more uses.[43]

The construct that represents side effects is an example of a monad. Monads are a general framework that can model different kinds of computation, including error handling, nondeterminism, parsing and software transactional memory. Monads are defined as ordinary datatypes, but Haskell provides some syntactic sugar for their use.

Haskell has an open, published specification,[30] and multiple implementations exist. Its main implementation, the Glasgow Haskell Compiler (GHC), is both an interpreter and native-code compiler that runs on most platforms. GHC is noted for its rich type system incorporating recent innovations such as generalized algebraic data types and type families. The Computer Language Benchmarks Game also highlights its high-performance implementation of concurrency and parallelism.[44]

An active, growing community exists around the language, and more than 5,400 third-party open-source libraries and tools are available in the online package repository Hackage.[45]

Code examples

A "Hello, World!" program in Haskell (only the last line is strictly necessary):

module Main (main) where          -- not needed in interpreter, is the default in a module file

main :: IO ()                     -- the compiler can infer this type definition
main = putStrLn "Hello, World!"

The factorial function in Haskell, defined in a few different ways:

-- Type annotation (optional, same for each implementation)
factorial :: (Integral a) => a -> a

-- Using recursion (with the "ifthenelse" expression)
factorial n = if n < 2
              then 1
              else n * factorial (n - 1)

-- Using recursion (with pattern matching)
factorial 0 = 1
factorial n = n * factorial (n - 1)

-- Using recursion (with guards)
factorial n
   | n < 2     = 1
   | otherwise = n * factorial (n - 1)

-- Using a list and the "product" function
factorial n = product [1..n]

-- Using fold (implements "product")
factorial n = foldl (*) 1 [1..n]

-- Point-free style
factorial = foldr (*) 1 . enumFromTo 1

As the Integer type has arbitrary-precision, this code will compute values such as factorial 100000 (a 456,574-digit number), with no loss of precision.

An implementation of an algorithm similar to quick sort over lists, where the first element is taken as the pivot:

-- Type annotation (optional, same for each implementation)
quickSort :: Ord a => [a] -> [a]

-- Using list comprehensions
quickSort []     = []                               -- The empty list is already sorted
quickSort (x:xs) = quickSort [a | a <- xs, a < x]   -- Sort the left part of the list
                   ++ [x] ++                        -- Insert pivot between two sorted parts
                   quickSort [a | a <- xs, a >= x]  -- Sort the right part of the list

-- Using filter
quickSort []     = []
quickSort (x:xs) = quickSort (filter (<x) xs)
                   ++ [x] ++
                   quickSort (filter (>=x) xs)

Implementations

All listed implementations are distributed under open source licenses.[46]

Implementations that fully or nearly comply with the Haskell 98 standard, include:

  • The Glasgow Haskell Compiler (GHC) compiles to native code on many different processor architectures, and to ANSI C, via one of two intermediate languages: C--, or in more recent versions, LLVM (formerly Low Level Virtual Machine) bitcode.[47][48] GHC has become the de facto standard Haskell dialect.[49] There are libraries (e.g., bindings to OpenGL) that work only with GHC. GHC is also distributed with the Haskell platform.
  • Jhc, a Haskell compiler written by John Meacham, emphasizes speed and efficiency of generated programs and exploring new program transformations.
    • Ajhc is a fork of Jhc.
  • LHC is a whole-program optimizing backend for GHC, based on Urban Boquist's compiler intermediate language, GRIN.[50] Older versions of LHC were based on Jhc rather than GHC.
  • The Utrecht Haskell Compiler (UHC) is a Haskell implementation from Utrecht University.[51] It supports almost all Haskell 98 features plus many experimental extensions. It is implemented using attribute grammars and is currently used mostly for research on generated type systems and language extensions.

Implementations no longer actively maintained include:

  • The Haskell User's Gofer System (Hugs) is a bytecode interpreter. It was once one of the implementations used most widely, alongside the GHC compiler,[52] but has now been mostly replaced by GHCi. It also comes with a graphics library.
  • HBC is an early implementation supporting Haskell 1.4. It was implemented by Lennart Augustsson in, and based on, Lazy ML. It has not been actively developed for some time.
  • nhc98 is a bytecode compiler focusing on minimizing memory use.
    • The York Haskell Compiler (Yhc) was a fork of nhc98, with the goals of being simpler, more portable and efficient, and integrating support for Hat, the Haskell tracer. It also had a JavaScript backend, allowing users to run Haskell programs in web browsers.

Implementations not fully Haskell 98 compliant, and using a variant Haskell language, include:

  • Eta and Frege are dialects of Haskell targeting the Java Virtual Machine.
  • Gofer was an educational dialect of Haskell, with a feature called constructor classes, developed by Mark Jones. It was supplanted by Hugs (Haskell User's Gofer System).
  • Helium, a newer dialect of Haskell. The focus is on making learning easier via clearer error messages. It currently lacks full support for type classes, rendering it incompatible with many Haskell programs.

Applications

  • Cabal is a tool for building and packaging Haskell libraries and programs.[53]
  • Darcs is a revision control system written in Haskell, with several innovative features, such as more precise control of patches to apply.
  • GHC is also often a testbed for advanced functional programming features and optimizations in other programming languages.
  • Git-annex is a tool to manage (big) data files under Git version control. It also provides a distributed file synchronization system (git-annex assistant).
  • Linspire GNU/Linux chose Haskell for system tools development.[54]
  • Pandoc is a tool to convert one markup format into another.
  • Pugs is a compiler and interpreter for the Raku programming language (formerly Perl 6).
  • ShellCheck – A shell script static analysis tool.[55]
  • The Shake build system, aiming to be reliable, robust, and fast.[56]
  • Xmonad is a window manager for the X Window System, written fully in Haskell.[57]

Industry

  • Ampersand,[58] an open source language[59] and toolchain[60] for building information systems with reactive behaviour, is being used by Ordina and TNO (both in the Netherlands) for purposes such as conceptual analysis, analysis of archimate-models, legal analysis and prototyping large information systems. The compiler[61] is written in Haskell. Web applications realised with Ampersand comprise the Semantic Treehouse[62] and RAP3.[63]
  • Bluespec SystemVerilog (BSV) is a language for semiconductor design that is an extension of Haskell. Also, Bluespec, Inc.'s tools are implemented in Haskell.
  • Cryptol, a language and toolchain for developing and verifying cryptography algorithms, is implemented in Haskell.
  • Facebook implements its anti-spam programs[64] in Haskell, maintaining the underlying data access library as open-source software.[65]
  • GitHub implemented Semantic, an open-source library for analysis, diffing, and interpretation of untrusted source code, in Haskell.[66]
  • Keera Studios writes mobile games and apps for both Android and iOS using Haskell.[67][68][69]
  • seL4, the first formally verified microkernel,[70] used Haskell as a prototyping language for the OS developer.[70]:p.2 At the same time, the Haskell code defined an executable specification with which to reason, for automatic translation by the theorem-proving tool.[70]:p.3 The Haskell code thus served as an intermediate prototype before final C refinement.[70]:p.3
  • Swift Navigation, a high precision GPS manufacturer, implements significant portions of its product in Haskell, providing some open source software.[71]

Web

There are several web frameworks written for Haskell, including:[72]

Frontend

Haskell can be used to write frontend code as well, using GHCJS:

Criticism

Jan-Willem Maessen, in 2002, and Simon Peyton Jones, in 2003, discussed problems associated with lazy evaluation while also acknowledging the theoretical motives for it.[74][75] In addition to purely practical considerations such as improved performance,[76] they note that, in addition to adding some performance overhead, lazy evaluation makes it more difficult for programmers to reason about the performance of their code (particularly its space use).

Bastiaan Heeren, Daan Leijen, and Arjan van IJzendoorn in 2003 also observed some stumbling blocks for Haskell learners: "The subtle syntax and sophisticated type system of Haskell are a double edged sword – highly appreciated by experienced programmers but also a source of frustration among beginners, since the generality of Haskell often leads to cryptic error messages."[77] To address these, researchers from Utrecht University developed an advanced interpreter called Helium, which improved the user-friendliness of error messages by limiting the generality of some Haskell features, and in particular removing support for type classes.

Ben Lippmeier designed Disciple[78] as a strict-by-default (lazy by explicit annotation) dialect of Haskell with a type-and-effect system, to address Haskell's difficulties in reasoning about lazy evaluation and in using traditional data structures such as mutable arrays.[79] He argues (p. 20) that "destructive update furnishes the programmer with two important and powerful tools ... a set of efficient array-like data structures for managing collections of objects, and ... the ability to broadcast a new value to all parts of a program with minimal burden on the programmer."

Robert Harper, one of the authors of Standard ML, has given his reasons for not using Haskell to teach introductory programming. Among these are the difficulty of reasoning about resource use with non-strict evaluation, that lazy evaluation complicates the definition of data types and inductive reasoning,[80] and the "inferiority" of Haskell's (old) class system compared to ML's module system.[81]

Haskell's build tool, Cabal, has historically been criticised for poorly handling multiple versions of the same library, a problem known as "Cabal hell". The Stackage server and Stack build tool were made in response to these criticisms.[82] Cabal itself now has a much more sophisticated build system, heavily inspired by Nix,[83] which became the default with version 3.0.

Clean is a close, slightly older relative of Haskell. Its biggest deviation from Haskell is in the use of uniqueness types instead of monads for I/O and side-effects.

A series of languages inspired by Haskell, but with different type systems, have been developed, including:

  • Agda, a functional language with dependent types.
  • Cayenne, with dependent types.
  • Elm, a functional language to create web front-end apps, no support for higher-kinded types.
  • Epigram, a functional language with dependent types suitable for proving properties of programs.
  • Idris, a general purpose functional language with dependent types, developed at the University of St Andrews.
  • PureScript compiles to JavaScript.
  • Ωmega, strict and more.

Java virtual machine (JVM) based:

  • Eta-lang, which intends to be Haskell on the JVM.
  • Frege, a Haskell-like language with Java's scalar types and good Java integration.[84][85][86]
  • Jaskell, a functional scripting language that runs in Java VM.[87]

Other related languages include:

  • Curry, a functional/logic programming language based on Haskell.

Haskell has served as a testbed for many new ideas in language design. There have been many Haskell variants produced, exploring new language ideas, including:

  • Disciple, a strict-by-default (laziness available by annotation) dialect of Haskell that supports destructive update, computational effects, type directed field projections and allied functional aspects.
  • Distributed Haskell (formerly Goffin) and Eden.
  • Eager Haskell, based on speculative evaluation.
  • Generic Haskell, a version of Haskell with type system support for generic programming.
  • Haskell++, an object-oriented variant.
  • Hume, a strict functional language for embedded systems based on processes as stateless automata over a sort of tuples of one element mailbox channels where the state is kept by feedback into the mailboxes, and a mapping description from outputs to channels as box wiring, with a Haskell-like expression language and syntax.
  • Mondrian, another object-oriented variant.
  • O'Haskell, an extension of Haskell adding object-orientation and concurrent programming support that "has ... been superseded by Timber."[88]
  • Parallel Haskell:
    • From Glasgow University, supports clusters of machines or single multiprocessors.[89][90] Also within Haskell is support for Symmetric Multiprocessor parallelism.[91]
    • From MIT.[92]

Conferences and workshops

The Haskell community meets regularly for research and development activities. The main events are:

  • International Conference on Functional Programming (ICFP)
  • Haskell Symposium (formerly the Haskell Workshop)
  • Haskell Implementors Workshop
  • Commercial Users of Functional Programming (CUFP)

Since 2006, a series of organized hackathons has occurred, the Hac series, aimed at improving the programming language tools and libraries.[93]

References

  1. Haskell.org, Thompson-Wheeler logo in Haskell. (2010) The public domain Haskell script which generates .svg of this logo. The logo is a monad bind (>>=) overlaid by a lambda (λ).
  2. Hudak et al. 2007.
  3. Marlow, Simon (24 November 2009). "Announcing Haskell 2010". Haskell (Mailing list). Retrieved 12 March 2011.
  4. Riedel, Herbert (28 April 2016). "ANN: Haskell Prime 2020 committee has formed". Haskell-prime (Mailing list). Retrieved 6 May 2017.
  5. Peyton Jones 2003, p. xi
  6. Norell, Ulf (2008). "Dependently Typed Programming in Agda" (PDF). Gothenburg: Chalmers University. Retrieved 9 February 2012.
  7. Hudak et al. 2007, pp. 12–38, 43.
  8. Stroustrup, Bjarne; Sutton, Andrew (2011). "Design of Concept Libraries for C++" (PDF). Archived from the original (PDF) on 10 February 2012. Cite journal requires |journal= (help)
  9. Hudak et al. 2007, pp. 12-45–46.
  10. Meijer, Erik (2006). "Confessions of a Used Programming Language Salesman: Getting the Masses Hooked on Haskell". Oopsla 2007. CiteSeerX 10.1.1.72.868.
  11. Meijer, Erik (1 October 2009). "C9 Lectures: Dr. Erik Meijer – Functional Programming Fundamentals, Chapter 1 of 13". Channel 9. Microsoft. Retrieved 9 February 2012.
  12. Drobi, Sadek (4 March 2009). "Erik Meijer on LINQ". InfoQ. QCon SF 2008: C4Media Inc. Retrieved 9 February 2012.CS1 maint: location (link)
  13. Hickey, Rich. "Clojure Bookshelf". Listmania!. Archived from the original on 3 October 2017. Retrieved 3 October 2017.
  14. Heller, Martin (18 October 2011). "Turn up your nose at Dart and smell the CoffeeScript". JavaWorld. InfoWorld. Retrieved 9 February 2012.
  15. "Declarative programming in Escher" (PDF). Retrieved 7 October 2015.
  16. Syme, Don; Granicz, Adam; Cisternino, Antonio (2007). Expert F#. Apress. p. 2. F# also draws from Haskell particularly with regard to two advanced language features called sequence expressions and workflows.
  17. Wechsung, Ingo. "The Frege Programming Language" (PDF). Retrieved 26 February 2014.
  18. "Facebook Introduces 'Hack,' the Programming Language of the Future". WIRED. 20 March 2014.
  19. "Idris, a dependently typed language". Retrieved 26 October 2014.
  20. "LiveScript Inspiration". Retrieved 4 February 2014.
  21. Freeman, Phil (2016). "PureScript by Example". Leanpub. Retrieved 23 April 2017.
  22. Kuchling, A. M. "Functional Programming HOWTO". Python v2.7.2 documentation. Python Software Foundation. Retrieved 9 February 2012.
  23. "Glossary of Terms and Jargon". Perl Foundation Perl 6 Wiki. The Perl Foundation. Archived from the original on 21 January 2012. Retrieved 9 February 2012.
  24. "The Rust Reference: Appendix: Influences". Retrieved 3 February 2016.
  25. Fogus, Michael (6 August 2010). "MartinOdersky take(5) toList". Send More Paramedics. Retrieved 9 February 2012.
  26. Lattner, Chris (3 June 2014). "Chris Lattner's Homepage". Chris Lattner. Retrieved 3 June 2014. The Swift language is the product of tireless effort from a team of language experts, documentation gurus, compiler optimization ninjas, and an incredibly important internal dogfooding group who provided feedback to help refine and battle-test ideas. Of course, it also greatly benefited from the experiences hard-won by many other languages in the field, drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
  27. "Timber/History". Retrieved 7 October 2015.
  28. Chevalier, Tim (28 January 2008). "anybody can tell me the pronunciation of "haskell"?". Haskell-cafe (Mailing list). Retrieved 12 March 2011.
  29. Type inference originally using Hindley-Milner type inference
  30. Peyton Jones 2003.
  31. Edward Kmett, Edward Kmett – Type Classes vs. the World
  32. "Haskell in education". Retrieved 15 February 2016.
  33. "Haskell in research". Retrieved 15 February 2016.
  34. A special interest group for companies and individuals interested in commercial usage of Haskell: commercialhaskell/commercialhaskell, Commercial Haskell SIG, 28 November 2019, retrieved 7 December 2019
  35. "PYPL PopularitY of Programming Language index". pypl.github.io. 6 September 2019. Retrieved 6 September 2019.
  36. Frederickson, Ben. "Ranking Programming Languages by GitHub Users". www.benfrederickson.com. Retrieved 6 September 2019.
  37. Peyton Jones 2003, Preface.
  38. "Type classes, first proposed during the design of the Haskell programming language, ..." John Garrett Morris (2013), "Type Classes and Instance Chains: A Relational Approach"
  39. Wadler, Philip (October 1988). "How to make ad-hoc polymorphism less ad hoc".
  40. "Haskell Wiki: Implementations". Retrieved 18 December 2012.
  41. "Welcome to Haskell'". The Haskell' Wiki.
  42. Wadler, P.; Blott, S. (1989). "How to make ad-hoc polymorphism less ad hoc". Proceedings of the 16th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages. ACM: 60–76. doi:10.1145/75277.75283. ISBN 978-0-89791-294-5.
  43. Hallgren, T. (January 2001). "Fun with Functional Dependencies, or Types as Values in Static Computations in Haskell". Proceedings of the Joint CS/CE Winter Meeting. Varberg, Sweden.
  44. Computer Language Benchmarks Game
  45. "HackageDB statistics". Hackage.haskell.org. Archived from the original on 3 May 2013. Retrieved 26 June 2013.
  46. "Implementations" at the Haskell Wiki
  47. "The LLVM Backend". GHC Trac.
  48. Terei, David A.; Chakravarty, Manuel M. T. (2010). "An LLVM Backend for GHC". Proceedings of ACM SIGPLAN Haskell Symposium 2010. ACM Press.
  49. C. Ryder and S. Thompson (2005). "Porting HaRe to the GHC API"
  50. Boquist, Urban; Johnsson, Thomas (1996). "The GRIN Project: A Highly Optimising Back End for Lazy Functional Languages". LNCS. 1268: 58–84.
  51. Utrecht Haskell Compiler
  52. Hudak et al. 2007, pp. 12–22.
  53. "The Haskell Cabal". Retrieved 8 April 2015.
  54. "Linspire/Freespire Core OS Team and Haskell". Debian Haskell mailing list. May 2006.
  55. ShellCheck
  56. Shake Build System
  57. xmonad.org
  58. "Documentation of Ampersand".
  59. Stef Joosten (25 April 2017), "Software Development in Relation Algebra with Ampersand", Relational and Algebraic Methods in Computer Science, Lecture Notes in Computer Science, 10226, Springer, pp. 177–192, doi:10.1007/978-3-319-57418-9_11, ISBN 978-3-319-57417-2
  60. "Ampersand: Build database applications faster than anyone else, and keep your data pollution free as a bonus".
  61. "Ampersand Automates Agile Information System Development".
  62. "SETU".
  63. "Repository for Ampersand Projects".
  64. "Fighting spam with Haskell". Facebook Code. 26 June 2015. Retrieved 11 August 2019.
  65. "Open-sourcing Haxl, a library for Haskell". Facebook Code. 10 June 2014. Retrieved 11 August 2019.
  66. Parsing, analyzing, and comparing source code across many languages: github/semantic, GitHub, 7 June 2019, retrieved 7 June 2019
  67. "Haskell on Android and iOS". Keera Studios. 1 June 2017. Retrieved 21 March 2020.
  68. "Enpuzzled". Enpuzzled - Keera Studios. 21 March 2020. Retrieved 21 March 2020.
  69. "Magic Cookies". Magic Cookies! - Keera Studios. 21 March 2020. Retrieved 21 March 2020.
  70. A formal proof of functional correctness was completed in 2009. Klein, Gerwin; Elphinstone, Kevin; Heiser, Gernot; Andronick, June; Cock, David; Derrin, Philip; Elkaduwe, Dhammika; Engelhardt, Kai; Kolanski, Rafal; Norrish, Michael; Sewell, Thomas; Tuch, Harvey; Winwood, Simon (October 2009). "seL4: Formal verification of an OS kernel" (PDF). 22nd ACM Symposium on Operating System Principles. Big Sky, MT, USA.
  71. Swift-Nav (2018)
  72. "Web/Frameworks – HaskellWiki". wiki.haskell.org. Retrieved 11 August 2019.
  73. "Snap: A Haskell Web Framework: Home". Snapframework.com. Retrieved 26 June 2013.
  74. Jan-Willem Maessen. Eager Haskell: Resource-bounded execution yields efficient iteration. Proceedings of the 2002 Association for Computing Machinery (ACM) SIGPLAN workshop on Haskell.
  75. Simon Peyton Jones. Wearing the hair shirt: a retrospective on Haskell. Invited talk at POPL 2003.
  76. "Lazy evaluation can lead to excellent performance, such as in The Computer Language Benchmarks Game".
  77. Heeren, Bastiaan; Leijen, Daan; van IJzendoorn, Arjan (2003). "Helium, for learning Haskell" (PDF). Proceedings of the 2003 ACM SIGPLAN Workshop on Haskell.
  78. "DDC – HaskellWiki". Haskell.org. 3 December 2010. Retrieved 26 June 2013.
  79. Ben Lippmeier, Type Inference and Optimisation for an Impure World, Australian National University (2010) PhD thesis, chapter 1
  80. Robert Harper. "The point of laziness".
  81. Robert Harper. "Modules matter most".
  82. "Solving Cabal Hell". www.yesodweb.com. Retrieved 11 August 2019.
  83. "Nix-style Local Builds – Cabal User Guide". Retrieved 1 October 2019.
  84. "Frege Programming Language".
  85. "Google Code Archive – Long-term storage for Google Code Project Hosting".
  86. Marimuthu Madasamy (29 February 2012). "mmhelloworld".
  87. "Codehaus". Archived from the original on 20 February 2006.
  88. "O'Haskell".
  89. "Glasgow Parallel Haskell".
  90. "7.15. Parallel Haskell".
  91. "4.12. Using SMP parallelism".
  92. Todd Allen Amicon. "Computation Structures Group- MIT- LCS".
  93. "Hackathon – HaskellWiki".

Further reading

Reports
Textbooks
Tutorials
History
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.