|
|
|
|
|
by cyberpunk
216 days ago
|
|
immutability? Interactive Elixir (1.19.0) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> x = 1
1
iex(2)> x = 2
2
iex(3)>
What's immutable about elixir? It's one of the things which I MISS from Erlang -- immutability. |
|
Data is immutable and thats much more important than whether local variables can be modified imo.