diff options
Diffstat (limited to 'cli/tests/top_level_await.ts')
-rw-r--r-- | cli/tests/top_level_await.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/top_level_await.ts b/cli/tests/top_level_await.ts new file mode 100644 index 000000000..65de253ea --- /dev/null +++ b/cli/tests/top_level_await.ts @@ -0,0 +1,3 @@ +const buf: Uint8Array = await Deno.readFile("hello.txt"); +const n: number = await Deno.stdout.write(buf); +console.log(`\n\nwrite ${n}`); |