A tour of the Haskell Prelude

Haskell is a lazy functional language with polymorphic higher-order functions, algebraic data types and list comprehensions. It has an extensive module system, and supports ad-hoc polymorphism (via classes). Haskell is purely functional, even ... fromIntegral type: fromIntegral :: (Integral a, Num b) => a -> b ................
................