deno 1.24.3

Provides the deno executable
1
2
3
4
5
6
7
import("./dynamic_import/b.js").catch(() => {
  console.log("caught import error from b.js");
});

import("./dynamic_import/c.js").catch(() => {
  console.log("caught import error from c.js");
});