rustlings/exercises/if/if1.rs

37 lines
702 B
Rust
Raw Normal View History

2018-02-22 06:09:53 +00:00
// if1.rs
//
2022-07-12 10:10:08 +01:00
// Execute `rustlings hint if1` or use the `hint` watch subcommand for a hint.
2018-02-22 06:09:53 +00:00
pub fn bigger(a: i32, b: i32) -> i32 {
// Complete this function to return the bigger number!
// Do not use:
// - another function call
// - additional variables
2023-10-15 18:00:35 +01:00
if a > b {
return a;
} else {
return b;
};
}
2019-01-23 19:48:01 +00:00
// 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));
}
#[test]
fn equal_numbers() {
assert_eq!(42, bigger(42, 42));
}
}