2018-02-22 01:09:53 -05:00
|
|
|
// if1.rs
|
|
|
|
|
2019-11-11 07:38:24 -05:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-06-06 22:52:42 -04:00
|
|
|
pub fn bigger(a: i32, b: i32) -> i32 {
|
2015-11-17 17:59:18 -05:00
|
|
|
// Complete this function to return the bigger number!
|
|
|
|
// Do not use:
|
|
|
|
// - another function call
|
|
|
|
// - additional variables
|
2019-11-11 10:51:38 -05:00
|
|
|
// Execute `rustlings hint if1` for hints
|
2015-11-17 17:59:18 -05:00
|
|
|
}
|
|
|
|
|
2019-01-23 14:48:01 -05:00
|
|
|
// Don't mind this for now :)
|
2016-06-14 11:07:36 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ten_is_bigger_than_eight() {
|
|
|
|
assert_eq!(10, bigger(10, 8));
|
|
|
|
}
|
2015-11-17 17:59:18 -05:00
|
|
|
|
2016-06-14 11:07:36 -04:00
|
|
|
#[test]
|
|
|
|
fn fortytwo_is_bigger_than_thirtytwo() {
|
|
|
|
assert_eq!(42, bigger(32, 42));
|
|
|
|
}
|
|
|
|
}
|