mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-01-09 20:03:24 +03:00
9 lines
179 B
Rust
9 lines
179 B
Rust
// variables4.rs
|
|
// Make me compile! Execute the command `rustlings hint variables4` if you want a hint :)
|
|
|
|
fn main() {
|
|
let x: i32;
|
|
x = 6;
|
|
println!("Number {}", x);
|
|
}
|