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.
13 lines
215 B
Rust
13 lines
215 B
Rust
// functions2.rs
|
|
// Make me compile! Execute `rustlings hint functions2` for hints :)
|
|
|
|
fn main() {
|
|
call_me(3);
|
|
}
|
|
|
|
fn call_me(num) {
|
|
for i in 0..num {
|
|
println!("Ring! Call number {}", i + 1);
|
|
}
|
|
}
|