|
|
|
|
|
by kiitos
1034 days ago
|
|
Panic doesn't reliably abort the program. And, in any case, arbitrary code doesn't have the right to abort the program in the first place! Only func main is allowed to terminate the process. Errors in any other context should always be reported to the caller via normal control flow, i.e. return. |
|