rustlings/exercises/variables/variables4.rs
Michael Cain b410ca2df7
Update exercises/variables/variables4.rs
Co-authored-by: Paul Scarrone <paul@scarrone.co>
2023-02-13 09:57:50 -06:00

10 lines
234 B
Rust

// variables4.rs
// Execute `rustlings hint variables4` or use the `hint` watch subcommand for a hint.
fn main() {
let x = 3;
println!("Number {}", x);
let x = 5; // don't change this line
println!("Number {}", x);
}