Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active January 3, 2018 21:34
Show Gist options
  • Save jwalgemoed/74b0d3ff606643cea3c9d3d4b18001ca to your computer and use it in GitHub Desktop.
Save jwalgemoed/74b0d3ff606643cea3c9d3d4b18001ca to your computer and use it in GitHub Desktop.
val fileContents by FileLoaderDelegate("someFile.txt")
class FileLoaderDelegate(private val filename: String) {
operator fun getValue(thisRef: Any?, property: KProperty<*>): Any {
return readFile(filename)
}
}
fun main(args: Array<String>) {
println(fileContents)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment