7

Erlang... variables you can't vary? WTF!

Writing JS two weeks later...
const a =1
const b = a + 1
Why would I ever assign over a? Pfft.
const c = b + 1
...

Comments
  • 0
    variables never vary ever. that's the whole point in math. being placeholders for **one** value.
Add Comment