We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a068be3 commit 7ae2816Copy full SHA for 7ae2816
exercises/02_basic_calculator/01_integers/src/lib.rs
@@ -1,6 +1,6 @@
1
fn compute(a: u32, b: u32) -> u32 {
2
// TODO: change the line below to fix the compiler error and make the tests pass.
3
- a + b * 4u8
+ a + b * 4u32
4
}
5
6
#[cfg(test)]
0 commit comments