solution to exercise 01

This commit is contained in:
David Doblas Jiménez 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!
//
// 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.
a + b * 2
}