https://fastro.deno.dev/fastro.png previous: structure next: hello-context
title: “Hello World” description: The application for creating a simple route image:import fastro from "https://fastro.deno.dev/mod.ts";
const f = new fastro();
f.get("/", () => "Hello, World!");
await f.serve();