Skip to content

Commit 0444a0a

Browse files
committed
rustの質問を一部削除、一部内容を修正
1 parent 3957bf2 commit 0444a0a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+89
-126
lines changed

public/docs/rust/0-intro/1-0-features.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
id: rust-intro-features
33
title: Rustの特徴:なぜ学ぶのか?
44
level: 2
5-
question:
6-
- Rustを学ぶとどのようなメリットがありますか?
7-
- 「トレードオフを解消する」言語とは具体的にどういう意味ですか?
8-
- 他のプログラミング言語と比べてRustはどんな点が特徴的ですか?
5+
question: []
96
---
107

118
## Rustの特徴:なぜ学ぶのか?

public/docs/rust/0-intro/1-2-zero-cost.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: 2. ゼロコスト抽象化(Zero-cost Abstractions)
44
level: 3
55
question:
66
- ゼロコスト抽象化とは何ですか?
7-
- イテレータや高階関数を使うと、なぜパフォーマンスが落ちる可能性があるのですか?
87
- 「手書きのコード以上のコストをかけない」とは具体的にどのような意味ですか?
98
---
109

public/docs/rust/0-intro/2-0-setup.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: 開発環境の構築
44
level: 2
55
question:
66
- 「モダンな開発環境」とは具体的にどのような点がモダンなのですか?
7-
- 開発環境を構築する際に、具体的に何が必要になりますか?
87
---
98

109
## 開発環境の構築

public/docs/rust/0-intro/3-0-hello-world.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
id: rust-intro-hello-world
33
title: Hello World (rustc を直接使う)
44
level: 2
5-
question:
6-
- '`rustc` を直接使うのはなぜ最初だけなのですか?'
7-
- '`.rs` というファイルの拡張子は何を意味しますか?'
8-
- バイナリファイルとは何ですか?
5+
question: []
96
---
107

118
## Hello World (`rustc` を直接使う)

public/docs/rust/0-intro/4-1-cargo-new.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ level: 3
55
question:
66
- '`cargo new` コマンドは何をするものですか?'
77
- '`Cargo.toml` には何が記述されるのですか?'
8-
- '`.gitignore` が自動生成されるのはなぜですか?'
98
---
109

1110
### プロジェクトの作成 (`cargo new`)

public/docs/rust/1-basics/1-0-let-mut.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ question:
77
- mutは何の略で、どのような意味があるのですか?
88
---
99

10-
## 変数と可変性(let vs let mut)
10+
## 変数と可変性(`let` vs `let mut`
1111

1212
Rustでは変数を宣言するために `let` キーワードを使用します。しかし、単に `let` で宣言された変数は、値を一度代入すると二度と変更できません。

public/docs/rust/1-basics/1-1-immutable.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
id: rust-basics-immutable
33
title: 不変変数(Immutable)
44
level: 3
5-
question:
6-
- 不変変数に値を再代入できないのはなぜですか?
7-
- E0384というコンパイルエラーはどのような状況で発生するのですか?
8-
- first assignment to `x`というメッセージはどのコード行を指していますか?
5+
question: []
96
---
107

118
### 不変変数(Immutable)

public/docs/rust/1-basics/1-2-mutable.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ id: rust-basics-mutable
33
title: 可変変数(Mutable)
44
level: 3
55
question:
6-
- mutを付けると変数の値が変更可能になるのはなぜですか?
76
- 常にmutを付けておくのは良くないことですか?
8-
- なぜRustはデフォルトで不変変数なのですか?
97
---
108

119
### 可変変数(Mutable)

public/docs/rust/1-basics/3-0-data-types.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ id: rust-basics-data-types
33
title: 基本的なデータ型
44
level: 2
55
question:
6-
- 静的型付け言語とはどういう意味ですか?
76
- 型推論が強力とは具体的にどういうことですか?
87
- 型注釈はどのような場合に必要になりますか?
98
---

public/docs/rust/1-basics/4-0-summary.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
id: rust-basics-summary
33
title: この章のまとめ
44
level: 2
5-
question:
6-
- 不変性がデフォルトと、他の言語の「定数」の違いは何ですか?
7-
- 「変化するものは目立つようにする」というRustの哲学がどう役立つのか、具体例が知りたいです。
5+
question: []
86
---
97

108
## この章のまとめ

0 commit comments

Comments
 (0)