Skip to content
Update Rust authored by Miki, Hiromitsu's avatar Miki, Hiromitsu
......@@ -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
......
......