Haskell features
This article describes the features in the programming language Haskell. == Examples == === Factorial === A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative integers, shown in Haskell: Or in one line: This describes the factorial as a recursive function, with one terminating base case.