blob: b996ca8aef937e06393496f7f0f1a29cf52777e8 (
plain)
1
2
3
4
5
6
7
8
9
|
// with all the imports of the same module, the module should only be
// instantiated once
import "./auto_print_hello.ts";
import "./auto_print_hello.ts";
(async () => {
await import("./auto_print_hello.ts");
})();
|