1 (async () => { 2 const { returnsHi, returnsFoo2, printHello3 } = await import( 3 "../subdir/mod1.ts" 4 ); 5 6 printHello3(); 7 8 if (returnsHi() !== "Hi") { 9 throw Error("Unexpected"); 10 } 11 12 if (returnsFoo2() !== "Foo") { 13 throw Error("Unexpected"); 14 } 15 })();