rustlings/exercises/if/if1.rs
Zachary Chua f37762c23a Finished first 5 as wel as quiz1
Finished variables, functions, if, move semantics, primitive types as
well as quiz1
2021-05-05 18:16:53 +08:00

31 lines
565 B
Rust

// if1.rs
pub fn bigger(a: i32, b: i32) -> i32 {
// Complete this function to return the bigger number!
// Do not use:
// - another function call
// - additional variables
// Execute `rustlings hint if1` for hints
if a > b {
a
} else {
b
}
}
// Don't mind this for now :)
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn ten_is_bigger_than_eight() {
assert_eq!(10, bigger(10, 8));
}
#[test]
fn fortytwo_is_bigger_than_thirtytwo() {
assert_eq!(42, bigger(32, 42));
}
}