2018-02-22 06:09:53 +00:00
|
|
|
// if1.rs
|
|
|
|
|
2016-06-14 16:07:36 +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:
|
|
|
|
// - return
|
|
|
|
// - another function call
|
|
|
|
// - additional variables
|
|
|
|
// Scroll down for hints.
|
|
|
|
}
|
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
}
|
2015-11-17 22:59:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// It's possible to do this in one line if you would like!
|
|
|
|
// Some similar examples from other languages:
|
|
|
|
// - In C(++) this would be: `a > b ? a : b`
|
|
|
|
// - In Python this would be: `a if a > b else b`
|
|
|
|
// Remember in Rust that:
|
|
|
|
// - the `if` condition does not need to be surrounded by parentheses
|
|
|
|
// - `if`/`else` conditionals are expressions
|
|
|
|
// - Each condition is followed by a `{}` block.
|