10 lines
158 B
Kotlin
10 lines
158 B
Kotlin
fun foo() {
|
|
while (test.lineNumber() > 0) {
|
|
test.lineNumber()
|
|
}
|
|
|
|
do {
|
|
test.lineNumber()
|
|
} while (test.lineNumber() > 0)
|
|
}
|