Rocket/examples/hello_world/src/main.rs

15 lines
246 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(rocket_macros)]
extern crate rocket;
use rocket::Rocket;
2016-08-09 01:34:18 +00:00
#[GET(path = "/")]
fn root() -> &'static str {
"Hello, world!"
}
fn main() {
Rocket::new("localhost", 8000).mount_and_launch("/", routes![root]);
}