mirror of
https://github.com/notohh/rustlings.git
synced 2024-10-30 16:59:12 -04:00
7 lines
81 B
Rust
7 lines
81 B
Rust
|
// Make me compile!
|
||
|
|
||
|
fn main() {
|
||
|
let x: i32;
|
||
|
println!("Number {}", x);
|
||
|
}
|