11 lines
100 B
Kotlin
Vendored
11 lines
100 B
Kotlin
Vendored
fun main() {
|
|
while(0 > 1) {
|
|
2
|
|
}
|
|
}
|
|
|
|
fun dowhile() {
|
|
do {return}
|
|
while(0 > 1)
|
|
}
|