rustlings/exercises/variables/variables4.rs
2021-05-14 17:14:54 -06:00

11 lines
198 B
Rust

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