rustlings/variables/variables4.rs

7 lines
81 B
Rust
Raw Normal View History

2015-09-17 01:19:24 +01:00
// Make me compile!
fn main() {
let x: i32;
println!("Number {}", x);
}