#![feature(proc_macro_hygiene, decl_macro)] use rocket::{get, routes}; #[get("/")] fn index() -> &'static str { "Holahey, Jävlar!" } fn main() { rocket::ignite().mount("/", routes![index]).launch(); }