第一天
安裝
$ curl https://sh.rustup.rs -sSf | sh
新增至環境變數
$ source $HOME/.cargo/env
驗證
$ rustc --version
$ cargo --version
更新與解除安裝
$ rustup self update
$ rustup self uninstall
Hello, world!
$ vim main.rs
main.rs
內容如下:
fn main() {
println!("Hello, world!");
}
編譯並執行
$ rustc main.rs
$ ./main
Hello, Cargo!
# 建立專案
$ cargo new hello_cargo
# 編譯併產生可執行檔案
$ cargo build
# 編譯但不產生可執行檔案
$ cargo check
# 編譯並執行可執行檔案
$ cargo run
第二天
TODO