summaryrefslogtreecommitdiff
path: root/tests/testdata/run/top_level_await/top_level_await.js
blob: ea319ea124bd6fd1bc815723ce3f6ff0d1296982 (plain)
1
2
3
const buf = await Deno.readFile("./assets/hello.txt");
const n = await Deno.stdout.write(buf);
console.log(`\n\nwrite ${n}`);