15 lines
276 B
Rust
15 lines
276 B
Rust
// variables3.rs
|
|
//
|
|
// Make me compile!
|
|
//
|
|
// If you need help, open the corresponding README.md or run: rustlings hint variables3
|
|
|
|
// I AM NOT DONE
|
|
|
|
fn main() {
|
|
let x = 3;
|
|
println!("Number {}", x);
|
|
x = 5; // don't change this line
|
|
println!("Number {}", x);
|
|
}
|