rustlings/variables/variables4.rs

7 lines
81 B
Rust
Raw Normal View History

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