mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-01-14 08:36:29 +00:00
7 lines
81 B
Rust
7 lines
81 B
Rust
|
// Make me compile!
|
||
|
|
||
|
fn main() {
|
||
|
let x: i32;
|
||
|
println!("Number {}", x);
|
||
|
}
|