functions

This commit is contained in:
2026-01-08 07:36:21 +00:00
parent 36cbf9d865
commit 505ab3b606
5 changed files with 6 additions and 4 deletions

View File

@@ -3,3 +3,5 @@
fn main() { fn main() {
call_me(); // Don't change this line call_me(); // Don't change this line
} }
fn call_me() {}

View File

@@ -1,5 +1,5 @@
// TODO: Add the missing type of the argument `num` after the colon `:`. // TODO: Add the missing type of the argument `num` after the colon `:`.
fn call_me(num:) { fn call_me(num: i32) {
for i in 0..num { for i in 0..num {
println!("Ring! Call number {}", i + 1); println!("Ring! Call number {}", i + 1);
} }

View File

@@ -6,5 +6,5 @@ fn call_me(num: u8) {
fn main() { fn main() {
// TODO: Fix the function call. // TODO: Fix the function call.
call_me(); call_me(4);
} }

View File

@@ -8,7 +8,7 @@ fn is_even(num: i64) -> bool {
} }
// TODO: Fix the function signature. // TODO: Fix the function signature.
fn sale_price(price: i64) -> { fn sale_price(price: i64) -> i64 {
if is_even(price) { if is_even(price) {
price - 10 price - 10
} else { } else {

View File

@@ -1,6 +1,6 @@
// TODO: Fix the function body without changing the signature. // TODO: Fix the function body without changing the signature.
fn square(num: i32) -> i32 { fn square(num: i32) -> i32 {
num * num; num * num
} }
fn main() { fn main() {