deno/cli/tests/top_level_await.js
2019-09-24 18:37:04 -04:00

4 lines
117 B
JavaScript

const buf = await Deno.readFile("hello.txt");
const n = await Deno.stdout.write(buf);
console.log(`\n\nwrite ${n}`);