algorithms_fourth 0.1.10

用rust实现算法4书中的算法,作为rust的学习实践
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    println!("Hello, world!");
    let n = 3;
    dbg!(a(n));
}

fn a(n: i32) -> i32 {
    n
}