Does functional programming mandate new naming conventions?

Posted by Jakob on Stack Overflow See other posts from Stack Overflow or by Jakob
Published on 2009-10-14T07:23:41Z Indexed on 2010/04/04 11:43 UTC
Read the original article Hit count: 666

I recently started studying functional programming using Haskell and came upon this article on the official Haskell wiki: How to read Haskell.

The article claims that short variable names such as x, xs, and f are fitting for Haskell code, because of conciseness and abstraction. In essence, it claims that functional programming is such a distinct paradigm that the naming conventions from other paradigms don't apply.

What are your thoughts on this?

© Stack Overflow or respective owner

Related posts about haskell

Related posts about functional-programming