Add missing semicolon to hello world program in intro.

This commit is contained in:
jbranchaud 2014-12-06 17:36:32 -06:00
parent de83d7dd19
commit 2171c95553

View file

@ -64,7 +64,7 @@ Here's what's in `src/main.rs`:
```{rust}
fn main() {
println!("Hello, world!")
println!("Hello, world!");
}
```