Skip to content

Instantly share code, notes, and snippets.

@hypest
Created March 9, 2018 16:36
Show Gist options
  • Save hypest/def4601866be90b2386aa55b2e95bf37 to your computer and use it in GitHub Desktop.
Save hypest/def4601866be90b2386aa55b2e95bf37 to your computer and use it in GitHub Desktop.
big text in EXAMPLE
private val EXAMPLE: String by lazy {
val sb = StringBuilder()
for (i in 0..10000) {
sb.append("word$i ")
}
sb.toString()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment