summaryrefslogtreecommitdiff
path: root/deno2/js/main.ts
blob: 0a098dd41a069e1f2dccfc82fe2796b5ca24e8c9 (plain)
1
2
3
4
5
6
const globalEval = eval;
const window = globalEval("this");
window["denoMain"] = () => {
  denoPrint("Hello world from foo");
  return "foo";
};