fun main(args: Array) { val writer = File("hello-world.txt").bufferedReader() try { // do stuff with writer } finally { writer.close() } }