ProgrammingLanguagesRustrust-bookCh1 開始入門本頁導覽Ch1 開始入門Install Rustuprustup負責管理rust版本及相關工具Compile & Runrustc {filename} // generate exe file./{filename}Cargo套件管理工具管理dependencies 常用指令:cargo new <project_name>Create new project with default settings.cargo buildCompile and generate exe.cargo runBuild and run.cargo checkCheck if it can compile.