1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/deno/main.ts

9 lines
232 B
TypeScript
Raw Normal View History

2024-04-22 12:15:30 +09:00
const now = new Date();
if (import.meta.main) {
Deno.serve(() => new Response(`${now}: Hello World!`));
}
// $ curl https://great-crow-36.deno.dev/
// Mon Apr 22 2024 03:13:21 GMT+0000 (Coordinated Universal Time): Hello World!