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