blob: 7c6ad603ca1584299a9d15c566b7b101337e2cd8 (
plain)
1
2
3
4
5
6
7
8
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
console.log("Starting the child worker");
setTimeout(() => {
console.log("The child worker survived the death of the parent!!!");
Deno.exit(1);
}, 2000);
|