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