#[macro_use] extern crate rocket; use maud::{html, Markup, DOCTYPE}; #[get("/")] fn index() -> Markup { html! { (DOCTYPE) html lang="es" { head {} body { div { "Hello, world!" } } } } } #[launch] fn rocket() -> _ { rocket::build().mount("/", routes![index]) }