2024-06-10 16:23:22 +08:00

16 lines
265 B
Rust

// functions3.rs
//
// 執行 `rustlings hint functions3` 或使用 `hint` watch 子命令來獲取提示。
// I AM NOT DONE
fn main() {
call_me();
}
fn call_me(num: u32) {
for i in 0..num {
println!("鈴鈴!第 {} 次呼叫", i + 1);
}
}