# stydu_rust **Repository Path**: ituserxxx/stydu_rust ## Basic Information - **Project Name**: stydu_rust - **Description**: 学习rust语言 - **Primary Language**: Rust - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-31 - **Last Updated**: 2023-04-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: Rust ## README install rust by https://www.rust-lang.org/tools/install check rust version: ```shell ~/ rustc --version ``` run main.rs by rustc ```shell ~/ rustc study ~/ ./main ``` usr cargo create preject ```shell ~/ cargo new rust_hello_world ``` how run main.rs ? ```shell # pwd is ~/ cargo run ```