|
|
|
|
|
by abbbyz
121 days ago
|
|
>one of the biggest flaws of OOP is that if x.foo() calls x.bar() in the middle, x.bar() can clobber a lot of local state, and result in code that's very difficult to reason about That's more a problem of having mutable references, you'd have the same problem in a procedural language. |
|
In fact I don't even know of any production language that handles variable mutability with any rigor other than Rust.