Update call_me function to accept a parameter

This commit is contained in:
Rock070 2023-12-17 00:02:56 +08:00
parent d417017f6c
commit 8de470b723

View File

@ -3,10 +3,8 @@
// Execute `rustlings hint functions3` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
call_me();
call_me(20);
}
fn call_me(num: u32) {