Skip to content

Instantly share code, notes, and snippets.

@rustyvz
Created April 7, 2025 19:31
Show Gist options
  • Save rustyvz/c4dd29774ae77cd0561dff797f39873c to your computer and use it in GitHub Desktop.
Save rustyvz/c4dd29774ae77cd0561dff797f39873c to your computer and use it in GitHub Desktop.
// to a single String
File("path/to/file")
.bufferedReader().use { it.readText() }
// to a List<String>
File("path/to/file")
.bufferedReader().use { it.readText() }.lines()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment