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