Content deleted Content added
Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.2) (Whoop whoop pull up - 10967 |
→"Let it crash" coding style: refnec not necessary => details are provided later in the article |
||
Line 255:
=="Let it crash" coding style==
Erlang is designed with a mechanism that makes it easy for external processes to monitor for crashes (or hardware failures), rather than an in-process mechanism like [[exception handling]] used in many other programming languages. Crashes are reported like other messages, which is the only way processes can communicate with each other,<ref name=Verraes>{{Cite web|last=Verraes|first=Mathias|date=2014-12-09|title=Let It Crash|url=https://verraes.net/2014/12/erlang-let-it-crash/|access-date=2021-02-10|website=Mathias Verraes' Blog|language=en}}</ref> and subprocesses can be spawned cheaply
===Supervisor trees===
|