Deno.exit(code?: number) : never
使用可选的退出代码退出Deno进程。
如果未提供退出代码,则Deno将以返回代码0退出。
Exit the Deno process with optional exit code.
If no exit code is supplied then Deno will exit with return code of 0.
code?: number
code?: number
never
never
Deno.exit(5);
无
No