12 lines
253 B
Kotlin
12 lines
253 B
Kotlin
import java.io.*
|
|
|
|
public class C {
|
|
throws(javaClass<IOException>())
|
|
fun foo() {
|
|
FileInputStream("foo").use { stream ->
|
|
// reading something
|
|
val c = stream.read()
|
|
System.out.println(c)
|
|
}
|
|
}
|
|
} |