rustlings/exercises/variables/variables5.rs
2020-04-23 23:05:28 +08:00

11 lines
237 B
Rust

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