rustlings/exercises/variables/variables3.rs

15 lines
276 B
Rust
Raw Normal View History

2018-02-22 13:09:53 +07:00
// variables3.rs
//
// Make me compile!
//
// If you need help, open the corresponding README.md or run: rustlings hint variables3
2015-09-17 06:19:24 +06:00
// I AM NOT DONE
2015-09-17 06:19:24 +06:00
fn main() {
let x = 3;
println!("Number {}", x);
x = 5; // don't change this line
2015-09-17 06:19:24 +06:00
println!("Number {}", x);
}