rustlings/exercises/variables/variables3.rs
Steven Johnson ecfbe8728d work so far
2022-06-28 19:34:16 +12:00

10 lines
238 B
Rust

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