码迷,mamicode.com
首页 > 其他好文 > 详细

Rustlings_if

时间:2020-06-11 13:17:00      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:mod   nal   strong   not   exe   cal   variable   The   class   

练习过程中的随手记,很多问题也未深究,,简单问题可能直接贴改完之后的代码,..分享出来,若能帮助大家,意外乐趣

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

标签:mod   nal   strong   not   exe   cal   variable   The   class   

原文地址:https://www.cnblogs.com/nightwindnw/p/Rustlings_2.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!