#![feature(proc_macro_hygiene, decl_macro)] #[macro_use] extern crate rocket; #[cfg(test)] mod tests; #[get("/hello//")] fn hello(name: String, age: u8) -> String { format!("Hello, {} year old named {}!", age, name) } #[get("/hello/")] fn hi(name: String) -> String { name } fn main() { rocket::ignite().mount("/", routes![hello, hi]).launch(); }