Skip to content

Instantly share code, notes, and snippets.

@renaudcerrato
Last active February 19, 2019 12:40
Show Gist options
  • Save renaudcerrato/9727e904923afdc709267dba5b584b8e to your computer and use it in GitHub Desktop.
Save renaudcerrato/9727e904923afdc709267dba5b584b8e to your computer and use it in GitHub Desktop.
Kotlin Lazy
class DeepThought {
val answer: String by lazy {
sleep(7_500_000, ChronoUnit.YEARS)
"42"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment