Maybe I missed something again, but why not ``` ...
# getting-started
c
Maybe I missed something again, but why not
Copy code
val c1 = File("A").bufferedWriter()
        val c2 = File("B").bufferedWriter()
        listOf(c1, c2).map {
            it.use {
                it.write("Hi")
            }
        }