providing function with an argument

This commit is contained in:
Hariettemaina 2022-09-09 15:00:18 +03:00
parent 7b07e89316
commit cdbf513840
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
// functions2.rs
// Execute `rustlings hint functions2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
call_me(3);

View File

@ -4,7 +4,7 @@
// I AM NOT DONE
fn main() {
call_me();
call_me(3);
}
fn call_me(num: u32) {