1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-05-19 22:23:27 +02:00
rustlings/variables/variables3.rs
2015-09-16 20:27:45 -04:00

9 lines
121 B
Rust

// Make me compile!
fn main() {
let x = 3;
println!("Number {}", x);
x = 5;
println!("Number {}", x);
}