rustlings/exercises/01_variables/variables4.rs

13 lines
241 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// variables4.rs
//
// Execute `rustlings hint variables4` or use the `hint` watch subcommand for a
// hint.
2015-09-17 03:19:24 +03:00
2015-09-17 03:19:24 +03:00
fn main() {
2024-01-31 18:09:11 +03:00
let mut x = 3;
println!("Number {}", x);
x = 5; // don't change this line
2015-09-17 03:19:24 +03:00
println!("Number {}", x);
}