solution to exercise 01

This commit is contained in:
2024-06-12 17:12:56 +02:00
parent 1251a6c1b1
commit 4d12facc2f

View File

@@ -3,7 +3,7 @@
// partner in this course and it'll often guide you in the right direction! // partner in this course and it'll often guide you in the right direction!
// //
// The input parameters should have the same type of the return type. // The input parameters should have the same type of the return type.
fn compute(a, b) -> u32 { fn compute(a: u32, b: u32) -> u32 {
// Don't touch the function body. // Don't touch the function body.
a + b * 2 a + b * 2
} }
@@ -16,4 +16,4 @@ mod tests {
fn case() { fn case() {
assert_eq!(compute(1, 2), 5); assert_eq!(compute(1, 2), 5);
} }
} }