loop is used to define the simplest kind of loop supported in Rust. It runs the code inside it until the code uses break or the program exits. loop { println!( ...
確定! 回上一頁