Pure functional programming languages do not allow mutable data, but some computations are more naturally/intuitively expressed in an imperative way -- or an imperative version of an algorithm may be more efficient. I am aware that most functional languages are not pure, and let you assign/reassign variables and do imperative things but generally discourage it.

My question is, why not allow local state to be manipulated in local variables, but require that functions can only access their own locals and global constants (or just constants defined in an outer scope)? That way, all functions maintain referential transparency (they always give the same return value given the same arguments), but within a function, a computation can be expressed in imperative terms (like, say, a while loop).

IO and such could still be accomplished in the normal functional ways - through monads or passing around a "world" or "universe" token.

link|improve this question

75% accept rate
Consider looking at existing languages including SML and Clojure. – pst Aug 16 '11 at 6:10
The "local state" you're talking about reminds me of Haskell's ST monad. Also of note are uniqueness types of Clean or linear types of ATS, which also allow you to have mutability and safe reclamation of memory and other resources at the cost of imposing a rigid structure upon a program. Clean's uniqueness typing preserves referential transparency. – Artyom Shalkhakov Aug 16 '11 at 6:42
feedback

closed as not constructive by Mitch Wheat, stema, Mat, leppie, Graviton Aug 16 '11 at 6:06

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.