6 lines
223 B
Text
6 lines
223 B
Text
^| I try to use the exit codes described at:
|
|
| https://github.com/openbsd/src/blob/master/include/sysexits.h
|
|
|^
|
|
int EX_SOFTWARE = 70 # internal software error
|
|
logic hasProblem = true
|
|
if hasProblem do exit EX_SOFTWARE end
|