don't do this: (0..5).map(|x| println!("{}", x)); // it won't even execute, as it is lazy. Rust will warn you about this. // Instead, use for: for x in 0..5 ...
確定! 回上一頁