Rust 基礎
安裝 Rust
安裝
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
更新
rustup update
VSCode 安裝 Rust 插件
- rust-analyzer
- CodeLLDB
Hello World(使用 rustc)
fn main() { println!("Hello, world!"); }
rutstc src/main.rs
會產生一個 main
或 main.exe
執行檔和一個 main.pdb
除錯輔助資訊檔
建立專案(使用 cargo)
- 使用 cargo 建立專案
cargo new hello_world
- 建置專案,會產生一個
target
資料夾
cd hello_world
cargo build
- 執行專案
cargo run
cargo run -q
- 清除專案
cargo clean
- 新增套件
cargo add <???>