8 lines
178 B
Kotlin
8 lines
178 B
Kotlin
import java.io.*
|
|
|
|
public class C {
|
|
throws(javaClass<IOException>())
|
|
fun foo() {
|
|
FileInputStream("foo").use { stream -> System.out.println(stream.read()) }
|
|
}
|
|
} |