mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
8 lines
117 B
Plaintext
Vendored
8 lines
117 B
Plaintext
Vendored
fun usage(arr: IntArray) {
|
|
val array: IntArray
|
|
for (i in array.indices) {
|
|
println(array[i])
|
|
}
|
|
}
|
|
|