We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a2bf4a commit f113c1eCopy full SHA for f113c1e
1.9/ja/book/if.md
@@ -20,7 +20,6 @@ Rustにおける `if` の扱いは さほど複雑ではありませんが、伝
20
let x = 5;
21
22
if x == 5 {
23
-// println!("x is five!");
24
println!("x は 5 です!");
25
}
26
```
@@ -38,10 +37,8 @@ if x == 5 {
38
37
39
40
41
42
43
} else {
44
-// println!("x is not five :(");
45
println!("x は 5 ではありません :(");
46
47
@@ -53,13 +50,10 @@ if x == 5 {
53
50
54
51
55
52
56
57
58
} else if x == 6 {
59
-// println!("x is six!");
60
println!("x は 6 です!");
61
62
-// println!("x is not five or six :(");
63
println!("x は 5 でも 6 でもありません :(");
64
65
0 commit comments