rustlings/exercises/if/if1.rs

32 lines
642 B
Rust
Raw Normal View History

2018-02-22 13:09:53 +07:00
// if1.rs
//
// Make me compile!
//
// If you need help, open the corresponding README.md or run: rustlings hint if1
2018-02-22 13:09:53 +07:00
// I AM NOT DONE
pub fn bigger(a: i32, b: i32) -> i32 {
// TODO: Complete this function to return the bigger number!
// Do not use:
// - another function call
// - additional variables
// Execute `rustlings hint if1` for hints
}
2019-01-24 02:48:01 +07: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));
}
}