2015-09-17 23:16:30 +00:00
|
|
|
// Make me compile! Scroll down for hints :)
|
2015-09-17 00:19:24 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
x = 5;
|
|
|
|
println!("x has the value {}", x);
|
|
|
|
}
|
2015-09-17 23:16:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Hint: The declaration on line 4 is missing a keyword that is needed in Rust
|
|
|
|
// to create a new variable binding.
|