File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -153,20 +153,20 @@ Scala чистый объектно-ориентированный язык в
153153примитивные типы (такие как, ` boolean ` или ` int ` ) от ссылочных
154154типов.
155155
156- ### Numbers are objects
156+ ### Числа - это объекты
157157
158- Since numbers are objects, they also have methods. And in fact, an
159- arithmetic expression like the following :
158+ Поскольку числа являются объектами, у них также есть методы.
159+ И на самом деле арифметическое выражение, подобное следующему :
160160
161161 1 + 2 * 3 / x
162162
163- consists exclusively of method calls, because it is equivalent to the
164- following expression, as we saw in the previous section :
163+ состоит исключительно из вызовов методов, потому что он эквивалентен
164+ следующему выражению, продемонстрированном в предыдущем разделе :
165165
166166 1.+(2.*(3)./(x))
167167
168- This also means that ` + ` , ` * ` , etc. are valid identifiers
169- in Scala.
168+ Это также означает, что ` + ` , ` * ` и т.д. являются допустимыми
169+ идентификаторами в Scala.
170170
171171### Functions are objects
172172
You can’t perform that action at this time.
0 commit comments