1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-21 00:19:41 +02:00
Files
functions
if
modules
move_semantics
primitive_types
standard_library_types
strings
tests
threads
variables
variables1.rs
variables2.rs
variables3.rs
variables4.rs
.gitignore
LICENSE
README.md
ex1.rs
ex2.rs
ex3.rs
ex4.rs
ex5.rs
rustlings/variables/variables4.rs

45 lines
521 B
Rust
Raw Normal View History

// Make me compile! Scroll down for hints :)
2015-09-16 20:19:24 -04:00
fn main() {
let x: i32;
println!("Number {}", x);
}
// Oops! In this exercise, we have a variable binding that we've created on
// line 4, and we're trying to use it on line 5, 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!