Files
Vanillae/sidekick/scratch/async_tests.js
T
pharpend cbb117b504 Pharpend/develop (#1)
* move stuff in here

* reorganizing because zx needs to feel special

* add base58/base64 explainer draft
2022-10-05 23:30:49 +09:00

27 lines
350 B
JavaScript

async function step1()
{
console.log('step 1');
throw new Error('step 1');
}
async function step2()
{
console.log('step 1');
throw new Error('step 1');
}
async function step3()
{
console.log('step 1');
throw new Error('step 1');
}
async function main()
{
await step1();
await step2();
await step3();
}
main();