mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-02 16:33:30 +02:00
Hints are now accessible using the CLI subcommand `rustlings hint <exercise name`. BREAKING CHANGE: This fundamentally changes the way people interact with exercises.
8 lines
168 B
Rust
8 lines
168 B
Rust
// variables4.rs
|
|
// Make me compile! Execute the command `rustlings hint variables4` if you want a hint :)
|
|
|
|
fn main() {
|
|
let x: i32;
|
|
println!("Number {}", x);
|
|
}
|