mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
26 lines
381 B
Kotlin
Vendored
26 lines
381 B
Kotlin
Vendored
fun test(x: Int, y: Int): String {
|
|
var result: String
|
|
if (x == 6) {
|
|
if (y == 6) {
|
|
result = "a"
|
|
} else {
|
|
result = "b"
|
|
}
|
|
} else {
|
|
result = "c"
|
|
}
|
|
return result
|
|
}
|
|
|
|
fun infiniteLoop() {
|
|
while(true) {}
|
|
}
|
|
|
|
// JVM_TEMPLATES
|
|
// 2 GOTO L7
|
|
// 1 GOTO L1
|
|
|
|
// JVM_IR_TEMPLATES
|
|
// 1 GOTO L6
|
|
// 1 GOTO L7
|
|
// 1 GOTO L0 |