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