mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-05 20:02:43 +01:00
28 lines
529 B
Rust
28 lines
529 B
Rust
// if1.rs
|
|
|
|
// I AM NOT DONE
|
|
|
|
pub fn bigger(a: i32, b: i32) -> i32 {
|
|
// Complete this function to return the bigger number!
|
|
// Do not use:
|
|
// - another function call
|
|
// - additional variables
|
|
// Execute `rustlings hint if1` for hints
|
|
}
|
|
|
|
// 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));
|
|
}
|
|
}
|