@@ -317,14 +317,14 @@ WindowsではRustをインストールした所の `share/doc` ディレクト
317
317
<!-- print the text “Hello, world!” to the screen, and in this section, we'll follow -->
318
318
<!-- that tradition. -->
319
319
Rustをインストールしたので最初のRustのプログラムを書いていきましょう。
320
- 新しい言語を学ぶ時に「Hello, world!」とスクリーンに表示する小さなプログラムを書くのが伝統で 、このセクションでもそれに従います。
320
+ 新しい言語を学ぶ時に「Hello, world!」と画面に表示する小さなプログラムを書くのが伝統で 、このセクションでもそれに従います。
321
321
322
322
<!-- The nice thing about starting with such a simple program is that you can -->
323
323
<!-- quickly verify that your compiler is installed, and that it's working properly. -->
324
324
<!-- Printing information to the screen is also a pretty common thing to do, so -->
325
325
<!-- practicing it early on is good. -->
326
326
このように小さなプログラムから始める利点は、コンパイラがインストールされていて、正しく動くことを素早く確認できることです。
327
- 情報をスクリーンに表示することも非常によくやるので 、早い内に練習しておくのが良いです。
327
+ 情報を画面に表示することも非常によくやるので 、早い内に練習しておくのが良いです。
328
328
329
329
330
330
<!-- > Note: This book assumes basic familiarity with the command line. Rust itself -->
@@ -450,7 +450,7 @@ Rustは全ての関数の本体部に波括弧を要求します。
450
450
<!-- This line does all of the work in this little program: it prints text to the -->
451
451
<!-- screen. There are a number of details that are important here. The first is -->
452
452
<!-- that it’s indented with four spaces, not tabs. -->
453
- この行が今回の小さなプログラムの全てを担っています。これがテキストをスクリーンに印字するのです 。
453
+ この行が今回の小さなプログラムの全てを担っています。これがテキストを画面に印字するのです 。
454
454
ここに重要な詳細がいくつもあります。1つ目はインデントが4スペースであり、タブでない点です。
455
455
456
456
<!-- The second important part is the `println!()` line. This is calling a Rust -->
@@ -472,7 +472,7 @@ Rustのマクロについては、後の章で詳細に議論しますが、今
472
472
<!-- prints the string to the screen. Easy enough! -->
473
473
次は 文字列の ` "Hello, world" ` です。
474
474
システムプログラミング言語では文字列は驚くほど複雑なトピックで、これは * [ 静的に確保された] [ statically allocated ] * 文字列です。
475
- 文字列をスクリーンに印字してくれる ` println! ` にこれを引数として渡します。簡単ですね!
475
+ 文字列を画面に印字してくれる ` println! ` にこれを引数として渡します。簡単ですね!
476
476
477
477
[ statically allocated ] : the-stack-and-the-heap.html
478
478
0 commit comments