show/hide this revision's text 3 adding ADTs

Off the top of my head:

  • lazy vs. eager (aka non-strict vs. strict or call-by-need vs. call-by-value): are function arguments evaluated before the function application, or after?
  • pure vs. impure: does the language allow functions to have side effects? Does it have mutable references?
  • static vs. dynamic: does the language have a strong static type system?
  • algebraic datatypes: does the language support pattern matching over variant types?
  • metaprogramming: does the language provide a powerful macro system?
  • concurrency: are threads/processes a first-class abstraction?
  • "exotic" types: how expressive is the static type system? ADTs? GADTs? Dependent types? Linear types? System F?

On the first two items are really unique to functional languages (i.e., almost all imperative languages are eager and impure).

show/hide this revision's text 2 adding concurrency, "exotic" types

Off the top of my head:

  • lazy vs. eager (aka non-strict vs. strict or call-by-need vs. call-by-value): are function arguments evaluated before the function application, or after?
  • pure vs. impure: does the language allow functions to have side effects? Does it have mutable references?
  • static vs. dynamic: does the language have a strong static type system?
  • metaprogramming: does the language provide a powerful macro system?
  • concurrency: are threads/processes a first-class abstraction?
  • "exotic" types: how expressive is the static type system? ADTs? GADTs? Dependent types? Linear types?

On the first two items are really unique to functional languages (i.e., almost all imperative languages are eager and impure).

show/hide this revision's text 1

Off the top of my head:

  • lazy vs. eager (aka non-strict vs. strict or call-by-need vs. call-by-value): are function arguments evaluated before the function application, or after?
  • pure vs. impure: does the language allow functions to have side effects?
  • static vs. dynamic: does the language have a strong static type system?
  • metaprogramming: does the language provide a powerful macro system?