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,7 +24,7 @@ ...@@ -24,7 +24,7 @@
### Create new project ### Create new project
1. 以下コマンドを実行する。 以下コマンドを実行することで、新規プロジェクトを作成することができる
```plaintext ```plaintext
cargo new <project_name> cargo new <project_name>
... ...
......