import test.* import java.util.* fun sample(): Input { return Input("Hello", "World"); } fun testForEachLine() { val list = ArrayList() val reader = sample() reader.forEachLine{ list.add("111") } } fun box(): String { testForEachLine() return "OK" }