1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-24 04:16:19 +02:00

16 lines
393 B
Rust
Raw Normal View History

2024-07-04 13:38:35 +02:00
#![allow(clippy::needless_late_init)]
2024-05-21 01:47:57 +02:00
fn main() {
// Reading uninitialized variables isn't allowed in Rust!
// Therefore, we need to assign a value first.
let x: i32 = 42;
println!("Number {x}");
2024-07-04 13:38:41 +02:00
// It is possible to declare a variable and initialize it later.
2024-05-21 01:47:57 +02:00
// But it can't be used before initialization.
let y: i32;
y = 42;
println!("Number {y}");
}