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