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