Created
March 9, 2018 16:36
-
-
Save hypest/def4601866be90b2386aa55b2e95bf37 to your computer and use it in GitHub Desktop.
big text in EXAMPLE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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