rustlings/exercises/variables/variables5.rs
2020-06-12 13:14:43 +05:30

10 lines
262 B
Rust

// variables5.rs
// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :)
fn main() {
let mut number = "3"; // don't change this line
println!("Number {}", number);
number = "4";
println!("Number {}", number);
}