mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
19 lines
321 B
Text
19 lines
321 B
Text
|
[WILDCARD]
|
||
|
let define;
|
||
|
[WILDCARD]
|
||
|
let instantiate;
|
||
|
[WILDCARD]
|
||
|
(function() {
|
||
|
[WILDCARD]
|
||
|
})();
|
||
|
|
||
|
define("print_hello", ["require", "exports"], function (require, exports) {
|
||
|
[WILDCARD]
|
||
|
});
|
||
|
define("mod1", ["require", "exports", "subdir2/mod2"], function (require, exports, mod2_ts_1) {
|
||
|
[WILDCARD]
|
||
|
});
|
||
|
|
||
|
instantiate(["mod1"]);
|
||
|
|