1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-06-07 21:56:10 +02:00
rustlings/exercises/variables/variables4.rs

46 lines
538 B
Rust
Raw Normal View History

2018-02-22 07:09:53 +01:00
// variables4.rs
// Make me compile! Scroll down for hints :)
2015-09-17 02:19:24 +02:00
fn main() {
let x: i32;
println!("Number {}", x);
}
// Oops! In this exercise, we have a variable binding that we've created on
2018-03-04 20:26:56 +01:00
// line 5, and we're trying to use it on line 6, but we haven't given it a
// 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!