11 lines
101 B
Kotlin
Vendored
11 lines
101 B
Kotlin
Vendored
fun bar(n: Int) {
|
|
|
|
}
|
|
|
|
fun foo() {
|
|
var a = 1
|
|
bar(a++)
|
|
bar(a--)
|
|
bar(++a)
|
|
bar(--a)
|
|
} |