|
|
|
|
|
by tupshin
3486 days ago
|
|
FWIW,after spending a couple of years with rust as my primary programming language, I'm convinced that they made the right decision wrt mutability (immutable by default, but mutability availale when needed), as rust's lifetime system eliminates nearly all the remaining pain points around mutability (data races). On the other hand, I think it is very important that some notion of purity be incorporated, even if only as an opt-in. |
|
Oh, how did you achieve that? :)