mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-14 11:22:55 +02:00
9bdb0a12e4
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);
|
|
}
|