1.安装
1.1 rust mac安装
curl https://sh.rustup.rs -sSf | sh
source $HOME/.cargo/env
1.2.显示rustc版本
rustc --version
注:如果显示版本号、提交的 hash 值和提交时间,恭喜你!则 Rust 已成功安装!
1.3.显示cargo
cargo --version如果你看到了版本号,一切 OK
2 编辑器选择
VScode作为编辑器,还有很多其它编辑器也可以,个人觉得vscode比较友好
3 创建项目
3.1 执行命名
cargo new hello_word
目录结构
3.2 运行
3.2.1 运行检查
cargo check
3.2.2 运行
cargo run
3.2.2 构建bin
cargo build