10 lines
262 B
Rust
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);
|
|
}
|