Was thinking of creating a CONS function to create a list, but then realized that im not mutating any state with foo += 1, since its == foo = foo + 1 which is a new object
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
The state is changed: the value referenced with the variable This is "not functional" in any pure sense. I might be tempted to call it "confusing" ;-) Happy coding. |
|||
|
|
foo += foo + 1is notfoo = foo + 1it isfoo = foo + foo + 1. – jer May 21 '11 at 6:12