8 lines
142 B
Plaintext
Vendored
8 lines
142 B
Plaintext
Vendored
fun test() {
|
|
loop@ for (i in -2..2) {
|
|
when {
|
|
i > 0 -> i.hashCode()
|
|
else -> continue@loop
|
|
}
|
|
}
|
|
} |