mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
8 lines
123 B
JavaScript
8 lines
123 B
JavaScript
|
if (Deno.exitCode != 0) {
|
||
|
throw new Error("boom!");
|
||
|
}
|
||
|
|
||
|
Deno.exitCode = 42;
|
||
|
|
||
|
console.log("Deno.exitCode", Deno.exitCode);
|