blob: 97980c689e07e06137c1f79e1d62a225f9345161 (
plain)
1
2
3
4
5
6
7
8
|
// Copyright 2018-2024 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);
|