Rustlings_if
Posted nightwindnw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rustlings_if相关的知识,希望对你有一定的参考价值。
练习过程中的随手记,很多问题也未深究,,简单问题可能直接贴改完之后的代码,..分享出来,若能帮助大家,意外乐趣
if1.rs
// if1.rs
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
if a >b {
a
}else { b }
}
// 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));
}
}
以上是关于Rustlings_if的主要内容,如果未能解决你的问题,请参考以下文章