2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-09-24 22:26:57 -04:00
|
|
|
|
|
|
|
console.log("Starting the child worker");
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
console.log("The child worker survived the death of the parent!!!");
|
|
|
|
}, 2000);
|