Files
kotlin-fork/idea/testData/formatter/AddSpacesAroundOperations.kt
T

39 lines
456 B
Kotlin

class Some {
fun some() {
var int : Int=0
int=12
int+=12
int-=12
int*=12
int/=12
int%=12
true&&true
true||false
12===3
12!==3
12==3
12!=3
12<=3
12>=3
12<3
12>3
12+3-12
12%3*12/3
!true
int++
++int
int--
--int
+12
-12
1..2
}
}