mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
const encoder = new TextEncoder();
|
|
const pending = [
|
|
Deno.stdout.write(encoder.encode("Hello, ")),
|
|
Deno.stdout.write(encoder.encode("world!")),
|
|
];
|
|
|
|
await Promise.all(pending);
|
|
await Deno.stdout.write(encoder.encode("\n"));
|