Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 5
    Also: looking at Erlang helps. The language is very simple, pure (all data is immutable) , and is all about asynchronous processing.
    – 9000
    Commented Jan 22, 2011 at 2:34
  • Basically after understanding the benefits of functional approach and changing state only when it matters will automatically make sure that even if you work in say something like Java, you know when to modify state and how to keep such things in control. Commented Oct 4, 2013 at 12:40
  • Disagree - a fact that program is composed from 'pure' functions doesn't mean that it don't iteract with outside world, it's mean, that every function in a program for one set of arguments will always return same result, and this is (purity) a big deal, because, from practical view - such program will be less buggy, more 'testable', successful execution of functions could be proved mathematically.
    – Gill Bates
    Commented Nov 10, 2013 at 17:05