Files
bun.sh/packages/bun-vscode/example/hello.ts
Ashcon Partovi 117e1b3883 bun run prettier (#14153)
Co-authored-by: Electroid <Electroid@users.noreply.github.com>
2024-09-24 22:46:18 -07:00

8 lines
122 B
TypeScript

type OS = "Windows";
Bun.serve({
fetch(req: Request) {
return new Response(`Hello, ${"Windows" as OS}!`);
},
});