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