mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-09 04:09:20 +00:00
13 lines
210 B
Rust
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);
|
|
}
|