mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-03-15 12:35:01 +00:00

Hints are now accessible using the CLI subcommand `rustlings hint <exercise name`. BREAKING CHANGE: This fundamentally changes the way people interact with exercises.
6 lines
115 B
Rust
6 lines
115 B
Rust
// functions1.rs
|
|
// Make me compile! Execute `rustlings hint function1` for hints :)
|
|
|
|
fn main() {
|
|
call_me();
|
|
}
|