dbb28c571b
Replaces an expression of form x.forEach { … } with for (a in x) { … }.
6 lines
75 B
Plaintext
6 lines
75 B
Plaintext
// WITH_RUNTIME
|
|
fun main() {
|
|
for (x in 1 rangeTo 2) {
|
|
x
|
|
}
|
|
} |