This repository has been archived on 2023-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
rustlings-exercises-completed/exercises/if/if1.rs

31 lines
598 B
Rust
Raw Normal View History

2018-02-22 00:09:53 -06:00
// if1.rs
2022-07-12 04:10:08 -05:00
// Execute `rustlings hint if1` or use the `hint` watch subcommand for a hint.
2018-02-22 00:09:53 -06: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-03-24 16:18:51 -05:00
if a > b {
a
} else {
b
}
}
2019-01-23 13:48:01 -06: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));
}
}