rustlings/exercises/variables/variables4.rs
2021-07-07 21:02:31 +01:00

9 lines
185 B
Rust

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