Rocket/examples/hello_person/src/main.rs

21 lines
418 B
Rust
Raw Normal View History

#![feature(plugin, decl_macro, proc_macro_non_items)]
2016-09-09 03:38:58 +00:00
#![plugin(rocket_codegen)]
#[macro_use] extern crate rocket;
#[cfg(test)] mod tests;
#[get("/hello/<name>/<age>")]
fn hello(name: String, age: u8) -> String {
2016-03-18 03:37:34 +00:00
format!("Hello, {} year old named {}!", age, name)
}
#[get("/hello/<name>")]
fn hi(name: String) -> String {
name
}
fn main() {
2016-12-19 09:57:13 +00:00
rocket::ignite().mount("/", routes![hello, hi]).launch();
}