rustlings/exercises/variables/variables4.rs

13 lines
210 B
Rust
Raw Normal View History

2018-02-22 13:09:53 +07:00
// variables4.rs
//
// Make me compile!
//
// If you need help, open the corresponding README.md or run: rustlings hint variables4
2015-09-17 06:19:24 +06:00
// I AM NOT DONE
2015-09-17 06:19:24 +06:00
fn main() {
let x: i32;
println!("Number {}", x);
}