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