1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-07-01 00:45:17 +02:00
Files
rustlings/variables/variables3.rs
Carol (Nichols || Goulding) f4c6dcf1d7 Add some exercises about variables!
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);
}