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