安装 https://www.rust-lang.org/learn/get-started curl https://sh.rustup.rs -sSf | sh rustc --version rustc 1.32.0 (9fda7c223 2019-01-16) 尝试hello world mkdir hello_world cd hello_world 创建main.rs fn main() { println!("Hello, world!") } 编译并运行 rustc main.rs ./main Hello, world! 使用cargo cargo --version cargo 1.32.0 (8610973aa 2019-01-02) cargo new hello-rust tree ├── hello-rust │ ├── Cargo.toml │ └── src │ └── main.rs 编辑main.rs 编译并运行 cargo build cargo run ……

阅读全文