blob: a91546f85995f63260a479a2ca287de7c322a2b6 (
plain)
1
2
3
4
5
6
7
8
9
|
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno.
const globalEval = eval;
const window = globalEval("this");
window['foo'] = () => {
deno_print("Hello world from foo");
return "foo";
}
|