Reducing Assumptions, Exploding Your Code
16 points by refaktor
16 points by refaktor
I've been learning Erlang recently and it has a very similar happy-path-first approach:
It's a bit more complicated than that, and there does exist a syntax like Python's try/except for synchronous code, but having the happy path uninterrupted while errors are caught by other processes has been a refreshing new take for me.
Hm, very interesting. Are there any minimal examples of this one could see?
Erlang's model is "let it crash" because you build on supervisors in practice: docs here.