rustlings/exercises/if/if1.rs

32 lines
631 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// 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
2022-05-28 03:04:58 +03:00
if a > b {
a
} else {
b
}
// No need for a return a; these fucnitons implictily return!
}
2019-01-23 22:48:01 +03: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));
}
}