2018-02-22 06:09:53 +00:00
|
|
|
// variables4.rs
|
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() {
|
|
|
|
let x: i32;
|
|
|
|
println!("Number {}", x);
|
|
|
|
}
|
2015-09-17 23:16:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Oops! In this exercise, we have a variable binding that we've created on
|
2018-03-04 19:26:56 +00:00
|
|
|
// line 5, and we're trying to use it on line 6, but we haven't given it a
|
2015-09-17 23:16:30 +00:00
|
|
|
// value. We can't print out something that isn't there; try giving x a value!
|
|
|
|
// This is an error that can cause bugs that's very easy to make in any
|
|
|
|
// programming language -- thankfully the Rust compiler has caught this for us!
|