\u5feb\u901f\u5f00\u59cb
\u4f7f\u7528 Cargo \u521b\u5efa\u7b2c\u4e00\u4e2a Rust \u9879\u76ee\u3002
\u5b89\u88c5 Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
\u521b\u5efa\u9879\u76ee
cargo new hello_rust
cd hello_rust
cargo run
Hello World
fn main() { println!("Hello, Rust!"); }