Updated README with more thorough example.

This commit is contained in:
Sergio Benitez 2016-03-17 19:56:23 -07:00
parent 852120e23a
commit 782536e43f
1 changed files with 6 additions and 3 deletions

View File

@ -11,9 +11,9 @@ does, the following will be the canonical "Hello, world!" example:
extern crate rocket;
use rocket::Rocket;
#[route(GET, path = "/hello")]
fn hello() -> &'static str {
"Hello, world!"
#[route(GET, path = "/hello/<name>")]
fn hello(name: &'static str) -> String {
format!("Hello, {}!", name)
}
fn main() {
@ -37,6 +37,9 @@ cargo build
cargo run
```
Then visit `localhost:8000/hello/{some_name}`, replacing `{some_name}` with some
name.
### OS X
Apple has stopped shipping `openssl` with OS X.11. As such, if your build fails