rustlings/exercises/if/if1.rs

34 lines
649 B
Rust
Raw Normal View History

2018-02-22 06:09:53 +00:00
// if1.rs
//
2022-07-12 09:10:08 +00:00
// Execute `rustlings hint if1` or use the `hint` watch subcommand for a hint.
2018-02-22 06:09:53 +00:00
// I AM NOT DONE
pub fn bigger(a: i32, b: i32) -> i32 {
// Complete this function to return the bigger number!
// Do not use:
// - another function call
// - additional variables
}
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));
}
}