mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
19 lines
244 B
Plaintext
19 lines
244 B
Plaintext
import std.*
|
|
import std.io.*
|
|
|
|
import java.io.*
|
|
|
|
fun box() : String {
|
|
val x = ByteArray (10)
|
|
|
|
for(index in 0..9) {
|
|
x [index] = index.byt
|
|
}
|
|
|
|
for(b in x.inputStream) {
|
|
System.out?.println(b)
|
|
}
|
|
|
|
return "OK"
|
|
}
|