File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -222,15 +222,15 @@ val yetAnotherPoint = Point(2, 2)
222
222
223
223
``` tut
224
224
if (point == anotherPoint) {
225
- println(point + " and " + anotherPoint + " are the same. ")
225
+ println(point + " と " + anotherPoint + " は同じです。 ")
226
226
} else {
227
- println(point + " and " + anotherPoint + " are different. ")
227
+ println(point + " と " + anotherPoint + " は異なります。 ")
228
228
} // Point(1,2) と Point(1,2) は同じです。
229
229
230
230
if (point == yetAnotherPoint) {
231
- println(point + " and " + yetAnotherPoint + " are the same. ")
231
+ println(point + " と " + yetAnotherPoint + " は同じです。 ")
232
232
} else {
233
- println(point + " and " + yetAnotherPoint + " are different. ")
233
+ println(point + " と " + yetAnotherPoint + " は異なります。 ")
234
234
} // Point(1,2) と Point(2,2) は異なります。
235
235
```
236
236
You can’t perform that action at this time.
0 commit comments