2018-02-22 06:09:53 +00:00
|
|
|
// if1.rs
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
2022-07-12 10:10:08 +01:00
|
|
|
// Execute `rustlings hint if1` or use the `hint` watch subcommand for a hint.
|
2018-02-22 06:09:53 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-06-07 03:52:42 +01:00
|
|
|
pub fn bigger(a: i32, b: i32) -> i32 {
|
2015-11-17 22:59:18 +00:00
|
|
|
// 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 :)
|
2016-06-14 16:07:36 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ten_is_bigger_than_eight() {
|
|
|
|
assert_eq!(10, bigger(10, 8));
|
|
|
|
}
|
2015-11-17 22:59:18 +00:00
|
|
|
|
2016-06-14 16:07:36 +01:00
|
|
|
#[test]
|
|
|
|
fn fortytwo_is_bigger_than_thirtytwo() {
|
|
|
|
assert_eq!(42, bigger(32, 42));
|
|
|
|
}
|
|
|
|
}
|