Move close to other stdlib tests

This commit is contained in:
Maxim Shafirov
2011-12-30 19:29:29 +04:00
parent db7e2b0871
commit b8590ada4f
4 changed files with 36 additions and 37 deletions
@@ -1,18 +0,0 @@
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"
}