Skip to content

Instantly share code, notes, and snippets.

@nwillc
Created October 25, 2018 00:32
Show Gist options
  • Save nwillc/ad347032f83b5124ab21c2bb85b04c86 to your computer and use it in GitHub Desktop.
Save nwillc/ad347032f83b5124ab21c2bb85b04c86 to your computer and use it in GitHub Desktop.
Use with multiple resources
try {
FileReader("input.txt").use { reader ->
FileWriter("output.txt").use { writer ->
// Use the input and output
}
}
} catch (e: FileNotFoundException) {
// Handle possible exception
} catch (e2: IOException) {
// Handle another exception
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment