mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
18 lines
268 B
Kotlin
Vendored
18 lines
268 B
Kotlin
Vendored
fun main(p: String?, p2: String?) {
|
|
// Generates IFNULL and GOTO
|
|
while (!(p == null)) {
|
|
"loop"
|
|
}
|
|
|
|
// Generates IFNULL and GOTO
|
|
while (p2 != null) {
|
|
"loop"
|
|
}
|
|
}
|
|
|
|
//0 ICONST_0
|
|
//0 ICONST_1
|
|
//0 ACONST_NULL
|
|
//2 IFNULL
|
|
//2 IF
|
|
//2 GOTO |