https://nim-lang.org/docs/system.html#quit%2Cstring
> proc quit(errormsg\: string; errorcode = QuitFailure) {.noreturn, ....}
>
> A shorthand for echo(errormsg); quit(errorcode).
Note quite accurate since it writes to stderr (as it should) while `echo` write
to stdout, right?