rustlings/exercises/variables/variables4.rs

13 lines
210 B
Rust

// variables4.rs
//
// Make me compile!
//
// If you need help, open the corresponding README.md or run: rustlings hint variables4
// I AM NOT DONE
fn main() {
let x: i32;
println!("Number {}", x);
}