reorganizing because zx needs to feel special

This commit is contained in:
2022-10-05 08:22:45 -06:00
parent 822ffa6c94
commit d1b40247be
84 changed files with 1 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
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();