Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Changes
Page history
Update Rust
authored
Nov 07, 2023
by
Miki, Hiromitsu
Hide whitespace changes
Inline
Side-by-side
Rust.md
View page @
b9f8bb95
...
...
@@ -9,7 +9,7 @@
1.
「
[
Rust をインストール
](
https://www.rust-lang.org/ja/tools/install
)
」のページから「RUSTUP-INIT.exe(64-BIT)」を選択してダウンロードする
2.
ダウンロードした「rustup-init.exe」について、コマンドプロンプトから以下のコマンドを実行する
```
```
plaintext
rustup-init.exe --default-host x86_64-pc-windows-gnu -y
```
...
...
@@ -24,11 +24,11 @@
### Create new project
1.
以下コマンドを実行する。
以下コマンドを実行する
ことで、新規プロジェクトを作成することができる
。
```
plaintext
cargo new <project_name>
```
```
plaintext
cargo new <project_name>
```
プロジェクト (クレート) 名称は snake_case であり、単一の単語がより望ましい。
\
https://github.com/rust-lang/rfcs/blob/master/text/0430-finalizing-naming-conventions.md#general-naming-conventions
...
...
...
...