Functional languages

Cards (3)

  • Functional languages are a type of declarative language. This paradigm has no mutable data structures, rather it makes use of structures like mathematical expressions, where the same input will always result in the same output. In functional languages, functions can call other functions and use the output of one function as the input for another.
  • That data structures in functional programming languages are immutable is an attribute that makes these languages ideal for processing Big Data. Thus, they are commonly used in distributed processing to ensure data integrity.
  • An example of a functional language is Haskell.