1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { delay } from "https://deno.land/std/async/delay.ts";
async function write(text: string) {
const textEncoder = new TextEncoder();
const data = textEncoder.encode(text);
await Deno.stdout.write(data);
}
await write("-=-");
await delay(1000);
await write("-=-");
await delay(1000);
await write("-=-");
await delay(1000);
await write("-=-");
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
February 9, 2024