# rust_study **Repository Path**: fanqunxing/rust_study ## Basic Information - **Project Name**: rust_study - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-15 - **Last Updated**: 2024-08-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## cargo - 创建项目 ```sh cargo new xxx ``` - 编译项目 ```sh cargo build ``` - 运行项目 ```sh cargo run ``` ## 使用rustc单独编译 ```sh # 编译 rustc ./src/day2.rs # 运行 ./day2 ```