1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-02-03 13:11:36 +02:00
rustlings/variables/variables4.rs
2015-09-16 20:27:45 -04:00

7 lines
81 B
Rust

// Make me compile!
fn main() {
let x: i32;
println!("Number {}", x);
}