vanillae project reorganization

This commit is contained in:
2023-05-25 12:58:23 -06:00
parent 6c80c37efa
commit 35ef2e0b1d
274 changed files with 144239 additions and 18 deletions
-26
View File
@@ -1,26 +0,0 @@
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();