## Execute command and inherit stdin, stdout and stderr from parent. Returns the exit code.
##
## You should prefer using [exec!] or [exec_cmd!] instead, only use this if you want to take a specific action based on a **specific non-zero exit code**.
## For example, `roc check` returns exit code 1 if there are errors, and exit code 2 if there are only warnings.
## So, you could use `exec_exit_code!` to ignore warnings on `roc check`.